Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f4ec6b8cb0 | |||
| 375acea7fc | |||
| 499f2b06f1 | |||
| e406249446 | |||
| 3d6fb3d70e | |||
| 3a8e90a751 | |||
| 74e3ddb92c |
@@ -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: "Shop Now", href: "#products" },
|
||||
{ text: "Shop Now", onClick: handleShopNowClick },
|
||||
{ text: "View Demo", href: "#" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user