Files
WRNexusJS/packages/ui/components/MarketingSectionHeader.wrn
T
2026-07-22 12:56:07 +05:30

36 lines
1.0 KiB
Plaintext

component MarketingSectionHeader {
props {
eyebrow = ""
title = ""
description = ""
align = "start"
class = ""
}
view {
<section class="px-4 py-12 sm:px-6 sm:py-16 lg:px-8 lg:py-20 {class}">
<div class="mx-auto w-full max-w-7xl">
<header
class="max-w-3xl"
class:mx-auto='{align === "center"}'
class:text-center='{align === "center"}'
>
{#if eyebrow}
<p class="mb-3 text-xs font-bold uppercase tracking-[0.16em] text-[var(--wire-color-primary,#059669)] sm:text-sm">{eyebrow}</p>
{/if}
{#if title}
<h2 class="m-0 text-3xl font-semibold tracking-[-0.035em] text-[var(--wire-color-text,#0f172a)] sm:text-4xl">{title}</h2>
{/if}
{#if description}
<p class="mt-5 text-base leading-8 text-[var(--wire-color-muted,#64748b)] sm:text-lg">{description}</p>
{/if}
</header>
<div class="mt-10">
<slot />
</div>
</div>
</section>
}
}