import React from 'react'; import { Section } from './Section'; import { Container } from './Container'; import { Stack } from './Stack'; import { Glow } from './Glow'; import { Heading } from './Heading'; import { Text } from './Text'; import { ButtonGroup } from './ButtonGroup'; import { Button } from './Button'; interface LandingHeroProps { title: string; subtitle: string; description: string; primaryAction: { label: string; href: string; }; secondaryAction: { label: string; href: string; }; } /** * LandingHero - A semantic hero section for landing pages. */ export function LandingHero({ title, subtitle, description, primaryAction, secondaryAction, }: LandingHeroProps) { return (
{subtitle} {title} {description}
); }