diff --git a/src/app/page.tsx b/src/app/page.tsx index cae7727..dc8cc22 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -23,6 +23,13 @@ const navItems = [ ]; export default function Home() { + const handleShopNowClick = () => { + const featuredSection = document.getElementById("featured-products"); + if (featuredSection) { + featuredSection.scrollIntoView({ behavior: "smooth" }); + } + }; + return ( ); -} \ No newline at end of file +}