Zoeken...  ⌘K GitHub

TextLead text

Lead paragraaf met grote typografie.

/text-lead
src/components/text/TextLead.astro
---
interface Props {
  text: string;
}
const { text = "BLURR is een full-service digitaal marketingbureau dat bedrijven helpt groeien via data-gedreven campagnes, scherpe strategie en creatieve executie. Wij werken uitsluitend samen met bedrijven die serieuze groeambities hebben." } = Astro.props;
---

<p class="tx-lead">{text}</p>

<style>
  :root {
    --color-accent: #6366f1;
    --color-primary: #0a0a0a;
  }
  .tx-lead {
    margin: 0;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    max-width: 700px;
  }
</style>

Props

Prop Type Default Beschrijving
text * string Lead tekst

* = verplicht