Hero Arch
Split hero: eyebrow with sprout icon, large serif headline with an italic sage highlight, calm copy, pill CTAs; on the right a tall arch-topped illustration (sun + rolling hills) with a floating stat chip.
organic-soft/section/hero-archSource
import { ArrowRight, Sprout } from "lucide-react";
import { cn } from "@/lib/utils";
export interface HeroArchProps {
eyebrow?: string;
/** Headline; the `highlight` substring is set in italic sage. */
title?: string;
highlight?: string;
description?: string;
primary?: { label: string; href: string };
secondary?: { label: string; href: string };
note?: string;
className?: string;
}
function Landscape() {
return (
<svg aria-hidden viewBox="0 0 400 480" preserveAspectRatio="xMidYMax slice" className="size-full">
<rect width="400" height="480" fill="var(--da-accent)" />
<circle cx="285" cy="150" r="46" fill="var(--da-secondary)" />
<path d="M0 300C70 250 140 262 210 290s130 30 190-10V480H0Z" fill="color-mix(in oklab, var(--da-primary) 35%, var(--da-accent))" />
<path d="M0 350c80-40 150-30 230 0s120 28 170 6V480H0Z" fill="color-mix(in oklab, var(--da-primary) 65%, var(--da-accent))" />
<path d="M0 410c90-30 180-26 260-4 60 16 110 14 140 4V480H0Z" fill="var(--da-primary)" />
<g fill="var(--da-primary)">
<path d="M92 300V262" stroke="var(--da-primary)" strokeWidth="3" />
<ellipse cx="92" cy="252" rx="14" ry="22" />
<path d="M122 296V270" stroke="var(--da-primary)" strokeWidth="3" />
<ellipse cx="122" cy="262" rx="10" ry="16" />
</g>
</svg>
);
}
/** Split hero: eyebrow with sprout icon, large serif headline with an italic sage highlight, calm copy, pill CTAs; on the right a tall arch-topped illustration (sun + rolling hills) with a floating stat chip. */
export function HeroArch({
eyebrow = "Carbon accounting, made human",
title = "Grow your business with a lighter footprint",
highlight = "lighter",
description = "Grove measures your company’s emissions from the tools you already use, shows where to cut first, and writes the report for you.",
primary = { label: "Start measuring", href: "#start" },
secondary = { label: "See how it works", href: "#how" },
note = "Free for teams under 20 people.",
className,
}: HeroArchProps) {
const [a, b] = highlight && title.includes(highlight) ? title.split(highlight) : [title, ""];
return (
<section aria-labelledby="os-arch-title" className={cn("da-section bg-da-bg text-da-fg", className)}>
<div className="da-container grid items-center gap-12 lg:grid-cols-[1.1fr_1fr]">
<div>
<p className="inline-flex items-center gap-2 rounded-da-pill bg-da-accent px-3 py-1 text-sm font-medium text-da-accent-fg">
<Sprout aria-hidden className="size-4" />
{eyebrow}
</p>
<h1 id="os-arch-title" className="mt-6 font-da-display text-[clamp(2.75rem,6.5vw,5rem)] leading-[1.02] tracking-da-display text-balance">
{a}
{b !== undefined && highlight && title.includes(highlight) && <em className="text-da-primary">{highlight}</em>}
{b}
</h1>
<p className="mt-6 max-w-lg text-lg text-da-muted-fg">{description}</p>
<div className="mt-9 flex flex-wrap items-center gap-3">
<a
href={primary.href}
className="da-focus da-transition inline-flex h-12 items-center gap-2 rounded-da-pill bg-da-primary px-6 font-medium text-da-primary-fg hover:bg-da-primary/90"
>
{primary.label} <ArrowRight aria-hidden className="size-4" />
</a>
<a
href={secondary.href}
className="da-focus da-transition inline-flex h-12 items-center rounded-da-pill px-5 font-medium underline decoration-da-border-strong decoration-1 underline-offset-[6px] hover:decoration-da-fg"
>
{secondary.label}
</a>
</div>
<p className="mt-5 text-sm text-da-muted-fg">{note}</p>
</div>
<div className="relative mx-auto w-full max-w-md">
<div className="aspect-[5/6] overflow-hidden rounded-t-full rounded-b-da-lg shadow-da-lg">
<Landscape />
</div>
<div className="absolute -bottom-5 -left-4 rounded-da-lg bg-da-surface px-5 py-4 text-da-surface-fg shadow-da-md sm:-left-10">
<p className="text-sm text-da-muted-fg">Emissions this year</p>
<p className="mt-0.5 font-da-display text-3xl">
−18<span className="text-xl">%</span>
</p>
<p className="font-da-mono text-xs text-da-primary">412 tCO₂e avoided</p>
</div>
</div>
</div>
</section>
);
}
export default HeroArch;
modules/organic-soft/section/hero-arch/index.tsx
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | — | Small label above the heading. |
| title | string | — | Headline; the `highlight` substring is set in italic sage. |
| highlight | string | — | Highlight. |
| description | string | — | Supporting text. |
| primary | { label: string; href: string } | — | Primary. |
| secondary | { label: string; href: string } | — | Secondary. |
| note | string | — | Note. |
| className | string | — | Extra classes on the root. |
Other hero variants in Organic Soft
Hero Centered
Centered serif hero floating over two soft organic blobs (sage and clay), a hand-drawn underline under the italic highlight, pill CTAs and a row of three calm stats.
Hero Editorial
Magazine-style hero: oversized serif headline across the width with an italic line, a collage of three organic shapes (arch, circle with leaf, pebble) and a pull-quote column; scroll cue.
Hero Footprint
Product hero: copy + CTAs on the left, a soft rounded footprint card on the right with a donut chart of emissions by source, legend with percentages and a gentle “biggest lever” tip.
Hero in other art directions
Hero Poster
Poster-style centered hero: gigantic stacked headline alternating solid and outlined words, colored feature stickers scattered around it, two pressable CTAs and a ruled wordmark strip of customer logos.
Hero Signup
Conversion hero with the signup form in the fold: headline with a blue highlighted phrase, boxed email capture with pending/success states, checkmark reassurance list and three staggered colored step cards.
Hero Stacked
Split hero with a huge stacked uppercase headline (one line boxed in yellow), two pressable CTAs, a stats strip and a changelog window mock with a rotated sticker.
Hero Terminal
Developer-first hero: full-width uppercase headline, copyable install command button, and an ink terminal window that replays a git merge → publish session line by line with a blinking yellow cursor.
Hero Centered
Centered hero over the mesh: frosted badge, headline with gradient-text ending, gradient + frosted CTAs, then a wide glass ‘live call’ window with four video tiles, live transcript and an AI capture chip.
Hero Mesh
Split hero over the glass mesh: frosted announcement pill, headline with gradient-text second half, gradient + frosted CTAs, and a layered composition of glass cards (AI meeting recap, floating video update, recording pill) gently bobbing.
Hero Stack
Split hero with a fanned 3D stack of three glass cards (AI recap, async video, synced tasks) tilted in perspective, spreading apart with a spring on hover.
Hero Waitlist
Minimal waitlist hero with a central glow: badge, big headline, a glass pill email form with gradient submit (pending, success, error states) and a stack of gradient avatars with the waitlist count.
Hero Cli
Developer-first centered hero on a dotted grid: version badge, headline, an install command field with copy-to-clipboard, a docs button and a terminal window showing the command output.
Hero Glow
Centered hero with announcement pill, gradient-ink headline, two CTAs, a single soft indigo glow over a masked hairline grid, and an HTML product window (incident list) fading out at the bottom.
Hero Metrics
Editorial left-aligned hero with an oversized tight headline, copy and CTAs on one baseline, a row of three hairline-separated mono metrics and a text wordmark strip of customers.
Hero Split
Two-column hero: eyebrow, headline, copy, checklist and two CTAs on the left; on the right a hairline card showing a live incident timeline with colored status dots and a resolved badge.
Hero Browser
Split hero: copy on the left, a large monochrome browser frame on the right showing a mock studio portfolio (nav, giant name, image grid with mono captions) and a signal-dot “Published” badge.
Hero Giant
Type-led hero: a mono label, an enormous tightly-tracked headline across the full width, then a 12-col row with copy + ink button on the left and mono key facts on the right, over a full-bleed gray image frame with caption.
Hero Grid
Visible-grid hero: hairline 12-column guides behind the content, headline + copy + ink CTA in the left columns, and a ruled index list of featured templates on the right whose rows invert on hover.
Hero Statement
Quiet manifesto hero: a single large statement set in the display face with generous line height and an orange signal dot after a key word, bottom-anchored mono footnotes and a scroll cue; nearly full-height.
Hero Band
Stripe-style hero on a deep blue gradient band with a slanted bottom edge: headline and CTAs on the left, a stacked pair of payment UI cards (invoice + payment success) on the right.
Hero Dashboard
Split hero: eyebrow, strong headline, copy, blue + bordered CTAs and a compliance line; on the right a finance dashboard mock (KPIs, bar chart, invoice table).
Hero Demo
Enterprise demo-request hero: copy + check bullets + quote on the left, a bordered lead form (name, work email, company, size, submit) with validation-ready fields and success state on the right.
Hero Proof
Centered proof-first hero on a faint grid: announcement badge, headline, CTAs, a four-stat bordered strip and a customer wordmark row.
Hero Illustrated
Split hero: butter badge, rounded headline, pill CTAs and avatar-dot social proof on the left; a flat pastel kanban illustration made of shapes (columns, tinted cards, circles) with a floating “done” chip on the right.
Hero Planner
Centered hero with a big rounded headline and pill CTAs above a full-width weekly planner mock-up: five day columns with date numbers and pastel task chips (fewer columns on small screens).
Hero Signup
Sign-up hero on a large butter panel: headline with a peach marker-highlighted phrase, white pill email form with success state, check perks and a 5-star rating line.
Hero Tiles
Hero with a left headline block and ink CTA next to a 2×2 grid of pastel feature tiles (peach, mint, lavender, butter) with white icon squares, the right column offset downward.