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