import { ArrowRight } from "lucide-react"; import Link from "next/link"; import { HeroAtmosphere } from "@/components/layout/hero-atmosphere"; import { MotionFade } from "@/components/motion-fade"; import { Button } from "@/components/ui/button"; import { getLocalizedPath } from "@/lib/locale"; type HomeHeroProps = { locale: string; kicker: string; title: string; description: string; portfolioLabel: string; contactLabel: string; }; export function HomeHero({ locale, kicker, title, description, portfolioLabel, contactLabel, }: HomeHeroProps) { return (

{kicker}

{title}

{description}

); }