"use client"; import { motion } from "framer-motion"; import Link from "next/link"; import { ChevronDown } from "lucide-react"; export default function HeroVideo() { const scrollToContent = () => { const element = document.getElementById("main-content"); if (element) { element.scrollIntoView({ behavior: "smooth" }); } }; return (
{/* Video Background */}
{/* Gradient Overlay */}
{/* Fallback Background (shown when video isn't loaded) */}
{/* Content */}
{/* Tagline */} Premium Organic Oils {/* Main Heading */} ManoonOils {/* Subtitle */} For hair and skin care {/* CTA Button */} Shop Now
{/* Scroll Indicator */}
); }