Update src/app/page.tsx

This commit is contained in:
2026-03-03 20:24:17 +00:00
parent 499f2b06f1
commit 375acea7fc

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -73,7 +80,7 @@ export default function LandingPage() {
}
]}
buttons={[
{ text: "Explore Bestsellers", href: "#products" },
{ text: "Shop Now", onClick: handleShopNowClick },
{ text: "View Demo", href: "#" }
]}
buttonAnimation="slide-up"