From 375acea7fc2bc95fc98a33922be2e47e7044cc3a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 20:24:17 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 (