From 38d61b38f043c5c41fa5a90757e408eabf3d3e0b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 30 Apr 2026 14:25:29 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 035529a..3b956f3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -95,24 +95,12 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} products={[ - { - id: "p1", brand: "Chronos", name: "Automatic Master", price: "24.500 ₺", rating: 5, - reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/close-up-male-hand-pocket-with-modern-elegant-wristwatch_1262-16910.jpg"}, - { - id: "p2", brand: "Vanguard", name: "Classic Hand-Wind", price: "18.200 ₺", rating: 4, - reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/close-up-military-protection-item_23-2149341299.jpg"}, - { - id: "p3", brand: "Grand Chron", name: "Sapphire Pro", price: "32.000 ₺", rating: 5, - reviewCount: "21", imageSrc: "http://img.b2bpic.net/free-photo/close-up-clock-with-time-change_23-2149241139.jpg"}, - { - id: "p4", brand: "Heritage", name: "Vintage Edition", price: "15.900 ₺", rating: 4, - reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-posing-black-white_23-2149411411.jpg"}, - { - id: "p5", brand: "Apex", name: "Skeleton Dynamic", price: "28.900 ₺", rating: 5, - reviewCount: "19", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-time-machine_23-2151599394.jpg"}, - { - id: "p6", brand: "Royal", name: "Gold Dress", price: "45.000 ₺", rating: 5, - reviewCount: "34", imageSrc: "http://img.b2bpic.net/free-photo/handsome-fashion-businessman-model-dressed-elegant-checkered-suit-posing-street_158538-13884.jpg"}, + { id: "p1", brand: "Chronos", name: "Automatic Master", price: "24.500 ₺", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/close-up-male-hand-pocket-with-modern-elegant-wristwatch_1262-16910.jpg", onProductClick: () => alert('Ürün Detayı: Automatic Master') }, + { id: "p2", brand: "Vanguard", name: "Classic Hand-Wind", price: "18.200 ₺", rating: 4, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/close-up-military-protection-item_23-2149341299.jpg", onProductClick: () => alert('Ürün Detayı: Classic Hand-Wind') }, + { id: "p3", brand: "Grand Chron", name: "Sapphire Pro", price: "32.000 ₺", rating: 5, reviewCount: "21", imageSrc: "http://img.b2bpic.net/free-photo/close-up-clock-with-time-change_23-2149241139.jpg", onProductClick: () => alert('Ürün Detayı: Sapphire Pro') }, + { id: "p4", brand: "Heritage", name: "Vintage Edition", price: "15.900 ₺", rating: 4, reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-posing-black-white_23-2149411411.jpg", onProductClick: () => alert('Ürün Detayı: Vintage Edition') }, + { id: "p5", brand: "Apex", name: "Skeleton Dynamic", price: "28.900 ₺", rating: 5, reviewCount: "19", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-time-machine_23-2151599394.jpg", onProductClick: () => alert('Ürün Detayı: Skeleton Dynamic') }, + { id: "p6", brand: "Royal", name: "Gold Dress", price: "45.000 ₺", rating: 5, reviewCount: "34", imageSrc: "http://img.b2bpic.net/free-photo/handsome-fashion-businessman-model-dressed-elegant-checkered-suit-posing-street_158538-13884.jpg", onProductClick: () => alert('Ürün Detayı: Gold Dress') }, ]} title="Koleksiyonluk Saatler" description="El yapımı, üstün mühendislik ürünü mekanik saatler." -- 2.49.1