4 Commits

Author SHA1 Message Date
479467f1bb Update src/app/page.tsx 2026-03-11 23:58:56 +00:00
bf094f6a2f Merge version_2 into main
Merge version_2 into main
2026-03-11 23:57:20 +00:00
638eeb440a Update src/app/page.tsx 2026-03-11 23:57:16 +00:00
252d80c790 Merge version_1 into main
Merge version_1 into main
2026-03-11 23:55:39 +00:00

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -75,7 +82,7 @@ export default function LandingPage() {
tag="New Arrivals"
tagIcon={Zap}
tagAnimation="slide-up"
buttons={[{ text: "View All", href: "#" }]}
buttons={[{ text: "Shop Signature Collection", onClick: handleShopSignatureCollection }]}
buttonAnimation="slide-up"
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
@@ -227,4 +234,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}