The landing page is configured using Frontmatter:
---layout: home
hero: ...
features: ...---Required Setup
- set
layout: home - configure
hero - optionally configure
features
hero
Rendered by the Hero component.
Type:
type HeroConfig = { name?: string; text?: string; tagline?: string; image?: { src: string; alt?: string; }; actions?: Array<{ theme?: string; text?: string; link?: string; }>;};Notes:
titlestill comes from frontmatterhero.textrenders above the taglinehero.taglinerenders with emphasized landing-page stylinghero.actionsrenders CTA links- external hero action links open in a new tab
features
Rendered by the Features component.
Type:
type FeaturesConfig = { icon?: string; title?: string; details?: string;};Notes:
iconis rendered as HTMLtitlerenders as the feature headingdetailsrenders as the feature body copy
Last updated: 4/10/26, 11:49 PM