From eae4906699bae008556cedf17101a0a0581cabe7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 05:56:23 +0000 Subject: [PATCH 1/5] Update src/app/categories/page.tsx --- src/app/categories/page.tsx | 152 +++++++----------------------------- 1 file changed, 30 insertions(+), 122 deletions(-) diff --git a/src/app/categories/page.tsx b/src/app/categories/page.tsx index 7a09517..585a97e 100644 --- a/src/app/categories/page.tsx +++ b/src/app/categories/page.tsx @@ -25,7 +25,7 @@ export default function CategoriesPage() { borderRadius="pill" contentWidth="mediumLarge" sizing="largeSmall" - background="aurora" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="shadow" secondaryButtonStyle="radial-glow" @@ -44,51 +44,21 @@ export default function CategoriesPage() { title="Shop by Category" description="Browse our curated collections of premium gaming gear" tag="Collections" - tagIcon={Tag} + tagIcon={Zap} tagAnimation="slide-up" products={[ { - id: "cat-1", - name: "Gaming Desk Mats", - price: "$39.99+", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-desk-mat-inspired-by-va-1773381110213-6b2b90c0.png?_wi=5", - imageAlt: "Gaming desk mats collection", - }, + id: "cat-1", name: "Gaming Desk Mats", price: "$39.99+", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-desk-mat-inspired-by-va-1773381110213-6b2b90c0.png", imageAlt: "Gaming desk mats collection"}, { - id: "cat-2", - name: "Gaming Apparel", - price: "$59.99+", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-hoodie-featuring-cinema-1773381110772-4a323e1a.png?_wi=4", - imageAlt: "Gaming apparel collection", - }, + id: "cat-2", name: "Gaming Apparel", price: "$59.99+", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-hoodie-featuring-cinema-1773381110772-4a323e1a.png", imageAlt: "Gaming apparel collection"}, { - id: "cat-3", - name: "Posters & Wall Art", - price: "$24.99+", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-stunning-gaming-wall-poster-inspired-b-1773381110571-d881cbbd.png?_wi=7", - imageAlt: "Gaming posters and wall art", - }, + id: "cat-3", name: "Posters & Wall Art", price: "$24.99+", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-stunning-gaming-wall-poster-inspired-b-1773381110571-d881cbbd.png", imageAlt: "Gaming posters and wall art"}, { - id: "cat-4", - name: "Phone Cases", - price: "$19.99+", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-inspired-phone-case-fea-1773381110121-f7aba456.png?_wi=4", - imageAlt: "Gaming phone cases", - }, + id: "cat-4", name: "Phone Cases", price: "$19.99+", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-inspired-phone-case-fea-1773381110121-f7aba456.png", imageAlt: "Gaming phone cases"}, { - id: "cat-5", - name: "Desk Accessories", - price: "$29.99+", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-collection-of-premium-gaming-desk-acce-1773381110376-fff6958f.png?_wi=6", - imageAlt: "Gaming desk accessories", - }, + id: "cat-5", name: "Desk Accessories", price: "$29.99+", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-collection-of-premium-gaming-desk-acce-1773381110376-fff6958f.png", imageAlt: "Gaming desk accessories"}, { - id: "cat-6", - name: "Limited Edition Drops", - price: "$99.99+", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/an-aesthetic-gaming-room-setup-showcasin-1773381112633-f1cf141c.png?_wi=4", - imageAlt: "Limited edition gaming gear", - }, + id: "cat-6", name: "Limited Edition Drops", price: "$99.99+", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/an-aesthetic-gaming-room-setup-showcasin-1773381112633-f1cf141c.png", imageAlt: "Limited edition gaming gear"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -96,9 +66,7 @@ export default function CategoriesPage() { useInvertedBackground={false} buttons={[ { - text: "View All", - href: "/shop", - }, + text: "View All", href: "/shop"}, ]} buttonAnimation="slide-up" /> @@ -108,74 +76,50 @@ export default function CategoriesPage() { Date: Fri, 13 Mar 2026 05:56:23 +0000 Subject: [PATCH 2/5] Update src/app/checkout/page.tsx --- src/app/checkout/page.tsx | 76 ++++++++++----------------------------- 1 file changed, 18 insertions(+), 58 deletions(-) diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index 41a680c..71938a9 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -7,6 +7,7 @@ import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; import Link from "next/link"; +import { ShoppingCart, Receipt } from "lucide-react"; export default function CheckoutPage() { const navItems = [ @@ -24,7 +25,7 @@ export default function CheckoutPage() { borderRadius="pill" contentWidth="mediumLarge" sizing="largeSmall" - background="aurora" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="shadow" secondaryButtonStyle="radial-glow" @@ -35,9 +36,7 @@ export default function CheckoutPage() { brandName="GearVerse" navItems={navItems} button={{ - text: "Shop Now", - href: "/shop", - }} + text: "Shop Now", href: "/shop"}} /> @@ -46,30 +45,15 @@ export default function CheckoutPage() { title="Complete Your Order" description="Review selected items and proceed to payment" tag="Order Summary" - tagIcon="ShoppingCart" + tagIcon={ShoppingCart} tagAnimation="slide-up" products={[ { - id: "checkout-1", - name: "Eclipse Motion Pro Desk Mat", - price: "$49.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-desk-mat-inspired-by-va-1773381110213-6b2b90c0.png?_wi=8", - imageAlt: "Eclipse Motion Pro extended gaming desk mat with neon cyan design", - }, + id: "checkout-1", name: "Eclipse Motion Pro Desk Mat", price: "$49.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-desk-mat-inspired-by-va-1773381110213-6b2b90c0.png", imageAlt: "Eclipse Motion Pro extended gaming desk mat with neon cyan design"}, { - id: "checkout-2", - name: "Valorant Cyberpunk Hoodie", - price: "$79.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-hoodie-featuring-cinema-1773381110772-4a323e1a.png?_wi=7", - imageAlt: "Premium gaming hoodie with cyberpunk artwork", - }, + id: "checkout-2", name: "Valorant Cyberpunk Hoodie", price: "$79.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-hoodie-featuring-cinema-1773381110772-4a323e1a.png", imageAlt: "Premium gaming hoodie with cyberpunk artwork"}, { - id: "checkout-3", - name: "Premium Desk Accessories Bundle", - price: "$89.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-collection-of-premium-gaming-desk-acce-1773381110376-fff6958f.png?_wi=8", - imageAlt: "Gaming desk accessories with RGB organization", - }, + id: "checkout-3", name: "Premium Desk Accessories Bundle", price: "$89.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-collection-of-premium-gaming-desk-acce-1773381110376-fff6958f.png", imageAlt: "Gaming desk accessories with RGB organization"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -77,9 +61,7 @@ export default function CheckoutPage() { useInvertedBackground={false} buttons={[ { - text: "Continue Shopping", - href: "/shop", - }, + text: "Continue Shopping", href: "/shop"}, ]} buttonAnimation="slide-up" /> @@ -90,29 +72,16 @@ export default function CheckoutPage() { title="Order Details" description="Your purchase summary at a glance" tag="Totals" - tagIcon="Receipt" - tagAnimation="slide-up" + tagIcon={Receipt} metrics={[ { - id: "subtotal", - value: "$219.97", - description: "Subtotal", - }, + id: "subtotal", value: "$219.97", description: "Subtotal"}, { - id: "shipping", - value: "$9.99", - description: "Shipping", - }, + id: "shipping", value: "$9.99", description: "Shipping"}, { - id: "tax", - value: "$18.40", - description: "Tax", - }, + id: "tax", value: "$18.40", description: "Tax"}, { - id: "total", - value: "$248.36", - description: "Total", - }, + id: "total", value: "$248.36", description: "Total"}, ]} gridVariant="uniform-all-items-equal" animationType="slide-up" @@ -127,17 +96,12 @@ export default function CheckoutPage() { animationType="entrance-slide" buttons={[ { - text: "Proceed to Payment", - href: "#", - }, + text: "Proceed to Payment", href: "#"}, { - text: "Save for Later", - href: "/shop", - }, + text: "Save for Later", href: "/shop"}, ]} background={{ - variant: "aurora", - }} + variant: "plain"}} useInvertedBackground={false} /> @@ -146,13 +110,9 @@ export default function CheckoutPage() { -- 2.49.1 From 9c72a7fa901d4ce276c74ac0be0479b7e960e0d6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 05:56:24 +0000 Subject: [PATCH 3/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 87 ++++++++-------------------------------- 1 file changed, 17 insertions(+), 70 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 3a00b33..2571d72 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -17,7 +17,7 @@ export default function ContactPage() { borderRadius="pill" contentWidth="mediumLarge" sizing="largeSmall" - background="aurora" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="shadow" secondaryButtonStyle="radial-glow" @@ -35,9 +35,7 @@ export default function ContactPage() { { name: "Contact", id: "/contact" }, ]} button={{ - text: "Shop Now", - href: "/shop", - }} + text: "Shop Now", href: "/shop"}} /> @@ -48,17 +46,12 @@ export default function ContactPage() { animationType="entrance-slide" buttons={[ { - text: "Shop Now", - href: "/shop", - }, + text: "Shop Now", href: "/shop"}, { - text: "Contact Us", - href: "/contact", - }, + text: "Contact Us", href: "/contact"}, ]} background={{ - variant: "aurora", - }} + variant: "plain"}} useInvertedBackground={false} /> @@ -72,25 +65,13 @@ export default function ContactPage() { tagIcon={TrendingUp} metrics={[ { - id: "1", - value: "50K+", - description: "Gamers & Streamers", - }, + id: "1", value: "50K+", description: "Gamers & Streamers"}, { - id: "2", - value: "500+", - description: "5-Star Reviews", - }, + id: "2", value: "500+", description: "5-Star Reviews"}, { - id: "3", - value: "25+", - description: "Original Designs", - }, + id: "3", value: "25+", description: "Original Designs"}, { - id: "4", - value: "100%", - description: "Premium Quality", - }, + id: "4", value: "100%", description: "Premium Quality"}, ]} gridVariant="uniform-all-items-equal" animationType="slide-up" @@ -111,47 +92,17 @@ export default function ContactPage() { animationType="slide-up" testimonials={[ { - id: "1", - name: "Alex Chen", - handle: "@alexgaming_pro", - testimonial: "The quality of GearVerse products exceeded my expectations. My entire setup looks premium now and the materials are top-tier!", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-young-gamer-age-18-25-with-1773381109721-5070b651.png?_wi=6", - }, + id: "1", name: "Alex Chen", handle: "@alexgaming_pro", testimonial: "The quality of GearVerse products exceeded my expectations. My entire setup looks premium now and the materials are top-tier!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-young-gamer-age-18-25-with-1773381109721-5070b651.png"}, { - id: "2", - name: "Sarah Williams", - handle: "@sarahstreams", - testimonial: "As a streamer, my setup visibility matters. GearVerse products give me that competitive edge and amazing aesthetics my viewers love.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-female-gamer-age-20-28-in--1773381109934-cbb33d9c.png?_wi=6", - }, + id: "2", name: "Sarah Williams", handle: "@sarahstreams", testimonial: "As a streamer, my setup visibility matters. GearVerse products give me that competitive edge and amazing aesthetics my viewers love.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-female-gamer-age-20-28-in--1773381109934-cbb33d9c.png"}, { - id: "3", - name: "Marcus Rodriguez", - handle: "@gamingmarcos", - testimonial: "Finally found a gaming brand that understands the culture. The designs are fresh, the quality is real, and the customer service is exceptional.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-content-creator-age-22-30--1773381110108-c941a864.png?_wi=6", - }, + id: "3", name: "Marcus Rodriguez", handle: "@gamingmarcos", testimonial: "Finally found a gaming brand that understands the culture. The designs are fresh, the quality is real, and the customer service is exceptional.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-content-creator-age-22-30--1773381110108-c941a864.png"}, { - id: "4", - name: "Emily Zhang", - handle: "@emilyplays", - testimonial: "I'm not usually one to buy gaming merchandise, but GearVerse changed my mind. These are genuinely beautiful and functional products.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-competitive-gamer-age-19-2-1773381112605-687cb313.png?_wi=5", - }, + id: "4", name: "Emily Zhang", handle: "@emilyplays", testimonial: "I'm not usually one to buy gaming merchandise, but GearVerse changed my mind. These are genuinely beautiful and functional products.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-competitive-gamer-age-19-2-1773381112605-687cb313.png"}, { - id: "5", - name: "James Morrison", - handle: "@rgbsetup_junkie", - testimonial: "My entire gaming room is GearVerse now. The synergy between the products and my RGB lighting is absolutely perfect!", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-an-rgb-setup-enthusiast-age--1773381109919-dfaff33d.png?_wi=5", - }, + id: "5", name: "James Morrison", handle: "@rgbsetup_junkie", testimonial: "My entire gaming room is GearVerse now. The synergy between the products and my RGB lighting is absolutely perfect!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-an-rgb-setup-enthusiast-age--1773381109919-dfaff33d.png"}, { - id: "6", - name: "Lisa Park", - handle: "@lisgaming", - testimonial: "The gaming poster art is incredible - it looks like it belongs in a professional esports arena. Worth every penny and then some.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-gaming-collector-age-25-35-1773381112095-adba3e52.png?_wi=5", - }, + id: "6", name: "Lisa Park", handle: "@lisgaming", testimonial: "The gaming poster art is incredible - it looks like it belongs in a professional esports arena. Worth every penny and then some.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-gaming-collector-age-25-35-1773381112095-adba3e52.png"}, ]} speed={40} /> @@ -162,13 +113,9 @@ export default function ContactPage() { -- 2.49.1 From aa9182b3d1c437e62d758f01b47274e5ac273c68 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 05:56:24 +0000 Subject: [PATCH 4/5] Update src/app/page.tsx --- src/app/page.tsx | 188 ++++++++++------------------------------------- 1 file changed, 37 insertions(+), 151 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0df1d3a..784fe4a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Sparkles, Zap, CheckCircle, Tag, TrendingUp, Award, Shield, Star, Users, Gamepad2, Tv, Palette, Check } from "lucide-react"; +import { Sparkles, Zap, CheckCircle, TrendingUp, Award, Shield, Star, Users, Gamepad2, Tv, Palette, Check } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -28,7 +28,7 @@ export default function HomePage() { borderRadius="pill" contentWidth="mediumLarge" sizing="largeSmall" - background="aurora" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="shadow" secondaryButtonStyle="radial-glow" @@ -39,9 +39,7 @@ export default function HomePage() { brandName="GearVerse" navItems={navItems} button={{ - text: "Shop Now", - href: "/shop", - }} + text: "Shop Now", href: "/shop"}} /> @@ -58,26 +56,14 @@ export default function HomePage() { mediaAnimation="slide-up" testimonials={[ { - name: "Alex Chen", - handle: "Competitive Gamer & Streamer", - testimonial: "GearVerse completely transformed my setup. The quality and design are unmatched. Every piece feels premium!", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-young-gamer-age-18-25-with-1773381109721-5070b651.png?_wi=1", - }, + name: "Alex Chen", handle: "Competitive Gamer & Streamer", testimonial: "GearVerse completely transformed my setup. The quality and design are unmatched. Every piece feels premium!", rating: 5, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-young-gamer-age-18-25-with-1773381109721-5070b651.png"}, { - name: "Sarah Williams", - handle: "Content Creator", - testimonial: "The aesthetic gaming gear from GearVerse makes my room look absolutely incredible. My viewers love it!", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-female-gamer-age-20-28-in--1773381109934-cbb33d9c.png?_wi=1", - }, + name: "Sarah Williams", handle: "Content Creator", testimonial: "The aesthetic gaming gear from GearVerse makes my room look absolutely incredible. My viewers love it!", rating: 5, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-female-gamer-age-20-28-in--1773381109934-cbb33d9c.png"}, { - name: "Marcus Rodriguez", - handle: "Gaming Enthusiast", - testimonial: "Finally found a brand that understands what gamers actually want. Premium quality meets gaming aesthetics perfectly.", - rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-content-creator-age-22-30--1773381110108-c941a864.png?_wi=1", - }, + name: "Marcus Rodriguez", handle: "Gaming Enthusiast", testimonial: "Finally found a brand that understands what gamers actually want. Premium quality meets gaming aesthetics perfectly.", rating: 5, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/portrait-of-a-content-creator-age-22-30--1773381110108-c941a864.png"}, ]} buttons={[ { text: "Shop Now", href: "/shop" }, @@ -98,47 +84,17 @@ export default function HomePage() { tagAnimation="slide-up" products={[ { - id: "1", - name: "Eclipse Motion Pro Desk Mat", - price: "$49.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-desk-mat-inspired-by-va-1773381110213-6b2b90c0.png?_wi=1", - imageAlt: "Eclipse Motion Pro extended gaming desk mat with neon cyan design", - }, + id: "1", name: "Eclipse Motion Pro Desk Mat", price: "$49.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-desk-mat-inspired-by-va-1773381110213-6b2b90c0.png", imageAlt: "Eclipse Motion Pro extended gaming desk mat with neon cyan design"}, { - id: "2", - name: "Valorant Cyberpunk Hoodie", - price: "$79.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-hoodie-featuring-cinema-1773381110772-4a323e1a.png?_wi=1", - imageAlt: "Premium gaming hoodie with cyberpunk artwork", - }, + id: "2", name: "Valorant Cyberpunk Hoodie", price: "$79.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-hoodie-featuring-cinema-1773381110772-4a323e1a.png", imageAlt: "Premium gaming hoodie with cyberpunk artwork"}, { - id: "3", - name: "Epic Fantasy Gaming Poster", - price: "$34.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-stunning-gaming-wall-poster-inspired-b-1773381110571-d881cbbd.png?_wi=1", - imageAlt: "Gaming wall poster with fantasy landscape artwork", - }, + id: "3", name: "Epic Fantasy Gaming Poster", price: "$34.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-stunning-gaming-wall-poster-inspired-b-1773381110571-d881cbbd.png", imageAlt: "Gaming wall poster with fantasy landscape artwork"}, { - id: "4", - name: "Neon Cyberpunk Phone Case", - price: "$29.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-inspired-phone-case-fea-1773381110121-f7aba456.png?_wi=1", - imageAlt: "Gaming-inspired phone case with neon design", - }, + id: "4", name: "Neon Cyberpunk Phone Case", price: "$29.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-inspired-phone-case-fea-1773381110121-f7aba456.png", imageAlt: "Gaming-inspired phone case with neon design"}, { - id: "5", - name: "Premium Desk Accessories Bundle", - price: "$89.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-collection-of-premium-gaming-desk-acce-1773381110376-fff6958f.png?_wi=1", - imageAlt: "Gaming desk accessories with RGB organization", - }, + id: "5", name: "Premium Desk Accessories Bundle", price: "$89.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-collection-of-premium-gaming-desk-acce-1773381110376-fff6958f.png", imageAlt: "Gaming desk accessories with RGB organization"}, { - id: "6", - name: "Pro Gaming Setup Collection", - price: "$199.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-stunning-gaming-wall-poster-inspired-b-1773381110571-d881cbbd.png?_wi=2", - imageAlt: "Complete gaming setup collection", - }, + id: "6", name: "Pro Gaming Setup Collection", price: "$199.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-stunning-gaming-wall-poster-inspired-b-1773381110571-d881cbbd.png", imageAlt: "Complete gaming setup collection"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -153,12 +109,8 @@ export default function HomePage() { -- 2.49.1 From 74d59ec97965ec19d9e2ea2fba5a170c545a3ee2 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 05:56:24 +0000 Subject: [PATCH 5/5] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 71 ++++++++----------------------------------- 1 file changed, 12 insertions(+), 59 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 858a4e6..4f16082 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -25,7 +25,7 @@ export default function ShopPage() { borderRadius="pill" contentWidth="mediumLarge" sizing="largeSmall" - background="aurora" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="shadow" secondaryButtonStyle="radial-glow" @@ -36,9 +36,7 @@ export default function ShopPage() { brandName="GearVerse" navItems={navItems} button={{ - text: "Shop Now", - href: "/shop", - }} + text: "Shop Now", href: "/shop"}} /> @@ -48,68 +46,23 @@ export default function ShopPage() { description="Explore our complete collection of premium gaming gear and accessories" products={[ { - id: "1", - name: "Eclipse Motion Pro Desk Mat", - price: "$49.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-desk-mat-inspired-by-va-1773381110213-6b2b90c0.png?_wi=3", - imageAlt: "Eclipse Motion Pro extended gaming desk mat with neon cyan design", - }, + id: "1", name: "Eclipse Motion Pro Desk Mat", price: "$49.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-desk-mat-inspired-by-va-1773381110213-6b2b90c0.png", imageAlt: "Eclipse Motion Pro extended gaming desk mat with neon cyan design"}, { - id: "2", - name: "Valorant Cyberpunk Hoodie", - price: "$79.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-hoodie-featuring-cinema-1773381110772-4a323e1a.png?_wi=3", - imageAlt: "Premium gaming hoodie with cyberpunk artwork", - }, + id: "2", name: "Valorant Cyberpunk Hoodie", price: "$79.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-hoodie-featuring-cinema-1773381110772-4a323e1a.png", imageAlt: "Premium gaming hoodie with cyberpunk artwork"}, { - id: "3", - name: "Epic Fantasy Gaming Poster", - price: "$34.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-stunning-gaming-wall-poster-inspired-b-1773381110571-d881cbbd.png?_wi=5", - imageAlt: "Gaming wall poster with fantasy landscape artwork", - }, + id: "3", name: "Epic Fantasy Gaming Poster", price: "$34.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-stunning-gaming-wall-poster-inspired-b-1773381110571-d881cbbd.png", imageAlt: "Gaming wall poster with fantasy landscape artwork"}, { - id: "4", - name: "Neon Cyberpunk Phone Case", - price: "$29.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-inspired-phone-case-fea-1773381110121-f7aba456.png?_wi=3", - imageAlt: "Gaming-inspired phone case with neon design", - }, + id: "4", name: "Neon Cyberpunk Phone Case", price: "$29.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-inspired-phone-case-fea-1773381110121-f7aba456.png", imageAlt: "Gaming-inspired phone case with neon design"}, { - id: "5", - name: "Premium Desk Accessories Bundle", - price: "$89.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-collection-of-premium-gaming-desk-acce-1773381110376-fff6958f.png?_wi=4", - imageAlt: "Gaming desk accessories with RGB organization", - }, + id: "5", name: "Premium Desk Accessories Bundle", price: "$89.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-collection-of-premium-gaming-desk-acce-1773381110376-fff6958f.png", imageAlt: "Gaming desk accessories with RGB organization"}, { - id: "6", - name: "Pro Gaming Setup Collection", - price: "$199.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-stunning-gaming-wall-poster-inspired-b-1773381110571-d881cbbd.png?_wi=6", - imageAlt: "Complete gaming setup collection", - }, + id: "6", name: "Pro Gaming Setup Collection", price: "$199.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-stunning-gaming-wall-poster-inspired-b-1773381110571-d881cbbd.png", imageAlt: "Complete gaming setup collection"}, { - id: "7", - name: "RGB Cable Management Set", - price: "$44.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-collection-of-premium-gaming-desk-acce-1773381110376-fff6958f.png?_wi=5", - imageAlt: "Premium RGB cable management and organization system", - }, + id: "7", name: "RGB Cable Management Set", price: "$44.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-collection-of-premium-gaming-desk-acce-1773381110376-fff6958f.png", imageAlt: "Premium RGB cable management and organization system"}, { - id: "8", - name: "Gaming Room Lighting Kit", - price: "$124.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/an-aesthetic-gaming-room-setup-showcasin-1773381112633-f1cf141c.png?_wi=3", - imageAlt: "Complete gaming room RGB lighting kit", - }, + id: "8", name: "Gaming Room Lighting Kit", price: "$124.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/an-aesthetic-gaming-room-setup-showcasin-1773381112633-f1cf141c.png", imageAlt: "Complete gaming room RGB lighting kit"}, { - id: "9", - name: "Gaming Desk Pad XL", - price: "$59.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-desk-mat-inspired-by-va-1773381110213-6b2b90c0.png?_wi=4", - imageAlt: "Extra-large gaming desk pad with premium surface", - }, + id: "9", name: "Gaming Desk Pad XL", price: "$59.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUywA810KubsVlJk9FHfhklAE/a-premium-gaming-desk-mat-inspired-by-va-1773381110213-6b2b90c0.png", imageAlt: "Extra-large gaming desk pad with premium surface"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -143,7 +96,7 @@ export default function ShopPage() { { text: "Contact Support", href: "/contact" }, { text: "Back to Home", href: "/" }, ]} - background={{ variant: "aurora" }} + background={{ variant: "plain" }} useInvertedBackground={false} /> -- 2.49.1