diff --git a/src/app/page.tsx b/src/app/page.tsx index 74421da..54a4a28 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,22 +33,10 @@ export default function LandingPage() {
@@ -144,42 +81,12 @@ export default function LandingPage() { gridVariant="two-columns-alternating-heights" useInvertedBackground={false} products={[ - { - id: "1", - name: "Premium Headphones", - price: "$299", - imageSrc: "http://img.b2bpic.net/free-photo/young-female-holding-headphones-striped-t-shirt-looking-cheerful-front-view_176474-15915.jpg", - }, - { - id: "2", - name: "Elite Smartwatch", - price: "$199", - imageSrc: "http://img.b2bpic.net/free-photo/sporty-woman-with-smartwatch-beach_23-2147803054.jpg", - }, - { - id: "3", - name: "Mechanical Keyboard", - price: "$149", - imageSrc: "http://img.b2bpic.net/free-photo/view-illuminated-neon-gaming-keyboard-setup-3d-glasses_23-2149529416.jpg", - }, - { - id: "4", - name: "4K Camera", - price: "$899", - imageSrc: "http://img.b2bpic.net/free-photo/collection-cameras-near-rows-film_23-2147852538.jpg", - }, - { - id: "5", - name: "Pro Gaming Mouse", - price: "$89", - imageSrc: "http://img.b2bpic.net/free-photo/programmer-typing-computer-fix-software-vulnerabilities-close-up_482257-116542.jpg", - }, - { - id: "6", - name: "Fast Power Bank", - price: "$59", - imageSrc: "http://img.b2bpic.net/free-photo/phone-mobile-connect-battery-power-bank_93675-128466.jpg", - }, + { id: "1", name: "Premium Headphones", price: "$299", imageSrc: "http://img.b2bpic.net/free-photo/young-female-holding-headphones-striped-t-shirt-looking-cheerful-front-view_176474-15915.jpg" }, + { id: "2", name: "Elite Smartwatch", price: "$199", imageSrc: "http://img.b2bpic.net/free-photo/sporty-woman-with-smartwatch-beach_23-2147803054.jpg" }, + { id: "3", name: "Mechanical Keyboard", price: "$149", imageSrc: "http://img.b2bpic.net/free-photo/view-illuminated-neon-gaming-keyboard-setup-3d-glasses_23-2149529416.jpg" }, + { id: "4", name: "4K Camera", price: "$899", imageSrc: "http://img.b2bpic.net/free-photo/collection-cameras-near-rows-film_23-2147852538.jpg" }, + { id: "5", name: "Pro Gaming Mouse", price: "$89", imageSrc: "http://img.b2bpic.net/free-photo/programmer-typing-computer-fix-software-vulnerabilities-close-up_482257-116542.jpg" }, + { id: "6", name: "Fast Power Bank", price: "$59", imageSrc: "http://img.b2bpic.net/free-photo/phone-mobile-connect-battery-power-bank_93675-128466.jpg" }, ]} title="Latest Arrivals" description="Hand-picked gadgets for professionals and enthusiasts." @@ -193,29 +100,14 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - title: "Next Gen Performance", - description: "Experience speed like never before.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/technology-background-texture_23-2148105480.jpg", - imageAlt: "Performance", - }, + title: "Next Gen Performance", description: "Experience speed like never before.", media: { + imageSrc: "http://img.b2bpic.net/free-photo/technology-background-texture_23-2148105480.jpg", imageAlt: "Performance"}, items: [ - { - icon: Zap, - text: "High speed", - }, - { - icon: Shield, - text: "Secure tech", - }, - { - icon: Award, - text: "Tested", - }, + { icon: Zap, text: "High speed" }, + { icon: Shield, text: "Secure tech" }, + { icon: Award, text: "Tested" }, ], reverse: false, - imageSrc: "http://img.b2bpic.net/free-photo/laptop-calculator-pencil-scissor-cell-phone-wireless-speaker-ebook-reader-wooden-desk_23-2147916438.jpg", - imageAlt: "circuit board electronics", }, ]} title="Why GadgetHub?" @@ -230,27 +122,9 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} metrics={[ - { - id: "m1", - value: "10M+", - title: "Gadgets Sold", - description: "Worldwide sales", - icon: ShoppingBag, - }, - { - id: "m2", - value: "500K", - title: "Happy Users", - description: "Global community", - icon: Users, - }, - { - id: "m3", - value: "24/7", - title: "Support", - description: "Always there", - icon: Headphones, - }, + { id: "m1", value: "10M+", title: "Gadgets Sold", description: "Worldwide sales", icon: ShoppingBag }, + { id: "m2", value: "500K", title: "Happy Users", description: "Global community", icon: Users }, + { id: "m3", value: "24/7", title: "Support", description: "Always there", icon: Headphones }, ]} title="Global Impact" description="We are proud of our milestones." @@ -261,15 +135,7 @@ export default function LandingPage() {