From 479467f1bbd8ce2edddcb0f4cbfd22855e8e3bb8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 23:58:56 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c63db8c..6e3e029 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,13 @@ import FooterCard from "@/components/sections/footer/FooterCard"; import { Award, Flame, Heart, Instagram, Linkedin, Mail, Shield, Sparkles, Star, Twitter, Users, Zap } from "lucide-react"; export default function LandingPage() { + const handleShopSignatureCollection = () => { + const productsSection = document.getElementById("products"); + if (productsSection) { + productsSection.scrollIntoView({ behavior: "smooth" }); + } + }; + return ( ); -} +} \ No newline at end of file -- 2.49.1