5 Commits

Author SHA1 Message Date
e7510220a3 Merge version_3 into main
Merge version_3 into main
2026-03-06 04:44:51 +00:00
44620234b8 Update src/app/page.tsx 2026-03-06 04:44:47 +00:00
8c6f7b5f99 Merge version_2 into main
Merge version_2 into main
2026-03-06 04:42:44 +00:00
46e9ae7612 Update src/app/page.tsx 2026-03-06 04:42:40 +00:00
9aa7ca8f22 Merge version_1 into main
Merge version_1 into main
2026-03-06 04:40:52 +00:00

View File

@@ -13,6 +13,18 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Award, Users, Globe, Zap, Sparkles, Watch, Crown, MessageCircle, Gem } from "lucide-react";
export default function LandingPage() {
const handleAuroraClick = () => {
window.open('/product/aurora-chronograph-limited-edition', '_blank');
};
const handleMeridianClick = () => {
window.open('/product/meridian-sports-elite-exclusive', '_blank');
};
const handleDuchessClick = () => {
window.open('/product/duchess-rose-gold-rare', '_blank');
};
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -113,13 +125,13 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
products={[
{
id: "1", name: "Aurora Chronograph", price: "$8,950", imageSrc: "http://img.b2bpic.net/free-vector/watch-background-design_1268-652.jpg", imageAlt: "Aurora Chronograph luxury watch"
id: "1", name: "Aurora Chronograph - Limited Edition", price: "$8,950", imageSrc: "http://img.b2bpic.net/free-vector/watch-background-design_1268-652.jpg", imageAlt: "Aurora Chronograph luxury watch", onProductClick: handleAuroraClick
},
{
id: "2", name: "Meridian Sports Elite", price: "$6,500", imageSrc: "http://img.b2bpic.net/free-photo/modern-black-watch-wrist-man-sitting-car_181624-58251.jpg?_wi=2", imageAlt: "Meridian Sports Elite watch"
id: "2", name: "Meridian Sports Elite - Exclusive", price: "$6,500", imageSrc: "http://img.b2bpic.net/free-photo/modern-black-watch-wrist-man-sitting-car_181624-58251.jpg?_wi=2", imageAlt: "Meridian Sports Elite watch", onProductClick: handleMeridianClick
},
{
id: "3", name: "Duchess Rose Gold", price: "$7,200", imageSrc: "http://img.b2bpic.net/free-photo/elegant-businesswoman-looking-her-smartwatch_23-2148788853.jpg", imageAlt: "Duchess Rose Gold timepiece"
id: "3", name: "Duchess Rose Gold - Rare", price: "$7,200", imageSrc: "http://img.b2bpic.net/free-photo/elegant-businesswoman-looking-her-smartwatch_23-2148788853.jpg", imageAlt: "Duchess Rose Gold timepiece", onProductClick: handleDuchessClick
}
]}
/>
@@ -176,7 +188,7 @@ export default function LandingPage() {
<ContactSplit
tag="Exclusive Access"
title="Join Our Collector's Circle"
description="Subscribe to receive exclusive previews of rare acquisitions, expert insights, and invitations to private viewings. Become part of an elite community of horology enthusiasts."
description="Get early access to rare acquisitions and expert insights before joining an elite community of horology enthusiasts. Receive exclusive previews, detailed market analysis, and invitations to private viewings."
tagIcon={Gem}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}