Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-06 04:42:44 +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
}
]}
/>