import { motion } from "motion/react"; import { Phone, ArrowRight, Star, Clock, Sparkles, ShieldCheck, MapPin } from "lucide-react"; import { BUSINESS_INFO, BRANDS } from "../data"; interface HeroProps { darkMode: boolean; } export default function Hero({ darkMode }: HeroProps) { const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.1, delayChildren: 0.1 } } }; const itemVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6, ease: "easeOut" } } }; return (
{/* Dynamic Background Playing Tire Video */}
); }