import { HeroAtmosphere } from "@/components/layout/hero-atmosphere"; import { MotionFade } from "@/components/motion-fade"; type PageHeroProps = { title: string; description?: string; }; export function PageHero({ title, description }: PageHeroProps) { return (

{title}

{title}

{description ? (

{description}

) : null}
); }