3 Commits

Author SHA1 Message Date
9dae454aed Merge version_3 into main
Merge version_3 into main
2026-03-11 23:59:00 +00:00
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

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"
@@ -59,12 +66,6 @@ export default function LandingPage() {
{ text: "Learn Our Story", href: "about" }
]}
buttonAnimation="slide-up"
avatarText="50K+ Collectors Trust Us"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/close-up-young-man-looking-camera-against-grey-wall_23-2148130316.jpg", alt: "Collector 1" },
{ src: "http://img.b2bpic.net/free-photo/young-woman-looking-while-smiling-grey-t-shirt-front-view_176474-16120.jpg", alt: "Collector 2" },
{ src: "http://img.b2bpic.net/free-photo/cheerful-young-man_1098-17111.jpg", alt: "Collector 3" }
]}
imageSrc="http://img.b2bpic.net/free-photo/fabric-texture-background_1385-1241.jpg"
imageAlt="Premium black textile luxury streetwear"
mediaAnimation="blur-reveal"
@@ -81,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"
@@ -233,4 +234,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}