import { cn } from "@/lib/utils"; type HeroMotionBackdropProps = { compact?: boolean; }; /** * Layered ambient backdrop rendered behind every hero (home + page). * Pure CSS so it needs no client JS: a faded grid for structure, a soft * brand glow, slowly drifting brand orbs, a grain overlay for texture, and * a bottom fade that blends the hero into the page content. The orb drift is * disabled under `prefers-reduced-motion` (see globals.css). */ export function HeroMotionBackdrop({ compact = false }: HeroMotionBackdropProps) { return (
); }