import { HERO_HIGHLIGHT_IDS, SITE_LINKS } from "../../data/siteContent"; import { useLocale } from "../../i18n/LocaleProvider"; import { Button } from "../ui/Button"; import { HeroMockup } from "./HeroMockup"; import styles from "./Hero.module.css"; export function Hero() { const { copy } = useLocale(); return (

{copy.hero.eyebrow}

{copy.brand}

{copy.hero.tagline}

{copy.hero.description}

{copy.hero.platformsLine}

{HERO_HIGHLIGHT_IDS.map((id) => { const item = copy.hero.highlights[id]; return (
{item.title} {item.description}
); })}
); }