"use client"; import { motion } from "framer-motion"; type HeroAtmosphereProps = { compact?: boolean; }; export function HeroAtmosphere({ compact = false }: HeroAtmosphereProps) { return (
); }