diff --git a/src/app/page.tsx b/src/app/page.tsx index 2a2b798..d2ef103 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,6 +14,13 @@ import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { Award, CheckCircle, Crown, Headphones, Heart, Mail, Shield, Sparkles, Truck, TrendingUp, Zap } from "lucide-react"; export default function LandingPage() { + const handleShopNowClick = () => { + const productsSection = document.getElementById("products"); + if (productsSection) { + productsSection.scrollIntoView({ behavior: "smooth" }); + } + }; + return (