---
title: ""
format:
  html:
    css: styles/custom.scss
    page-layout: custom
    include-in-header:
      text: |
        <link href="https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Patrick+Hand&display=swap" rel="stylesheet">
---
```{r, warning=FALSE, echo=FALSE,comment=FALSE,include=FALSE}

library(googlesheets4)
library(dplyr)

gs4_auth(email = "blaise@kello.co.uk")  # uses cached token, no browser

esc <- function(x) gsub("([*_])", "\\\\\\1", x)

r2 = googlesheets4::range_read(
  ss    = "https://docs.google.com/spreadsheets/d/1GVFj_OSiZubVkn9hrQ-vBN-LN7feuz3-H7hJaQMG8eA/edit?pli=1&gid=842588785#gid=842588785",
  sheet = "Recipes_F2",
  #range = "D2:D100",
  col_names = TRUE
) |> 
  filter(code == "KOM2A")

ingredients = paste0(r2$Ingredients,"<br>* = organically certified ingredient")
ingredienten = paste0(r2$Ingredienten,"<br>* = biologische oorsprong")


```

```{=html}
<style>
 
</style>
<div class="lw-section">

  <!-- ── how is it supplied ── -->
  <div class="drinks-section">
    <div class="drinks-title">Kombucha G&T</div>
    <p class="brand-subtitle">Our Kombucha is fermented in the traditional way: organic Green Tea + organic Demerara Sugar with a Scoby and brewed for 7 days. No modified yeasts, acid concentrate or sweeteners. This means it contains a bit of alcohol 0.5-1.2% ABV. The original Kombucha is second fermented with fresh Ginger and fresh Turmeric for 3-5 days, bottled and refrigerated to develop fizz.</p>
    
    </div>

    <div class="step-card">
      <img class="drinks-emoji" src="images/icons/glass_gt.png" alt="Keg">
      <div class="step-desc">Ingredients: `r ingredients`.</div>
      <img class="drinks-label" src="labels/260505KOM2XTEST_x1.png" alt="Keg">
    </div>
  </div>

  <div class="tagline">Real drinks. No compromise.</div>
  <div class="tagline">get in touch: info@lesswasted.nl</div>

</div>
```