From 589bec53932ffaa76988d6be9c7314002a47744f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 13 Apr 2026 14:10:15 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 161 +++++++++++++---------------------------------- 1 file changed, 42 insertions(+), 119 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1e05eb7..ec09d01 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import HeroSplit from '@/components/sections/hero/HeroSplit'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { CheckCircle2, Gauge, Settings } from "lucide-react"; +import { CheckCircle2, Gauge, Settings, Wrench, CircleDot } from "lucide-react"; export default function LandingPage() { return ( @@ -29,14 +29,11 @@ export default function LandingPage() { @@ -128,27 +85,13 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} products={[ - { - id: "p1", brand: "Apex", name: "Performance Sport Tyre", price: "$120", rating: 5, - reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/close-up-model-small-cars-overpass-traffic-concepts_1150-20142.jpg"}, - { - id: "p2", brand: "Apex", name: "City Commuter Tyre", price: "$85", rating: 4, - reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/outdoors-cobblestone-texture-with-car-wheel_23-2149432974.jpg"}, - { - id: "p3", brand: "Apex", name: "Alloy Mag Rim V1", price: "$250", rating: 5, - reviewCount: "21", imageSrc: "http://img.b2bpic.net/free-photo/view-3d-film-roll_23-2150866027.jpg"}, - { - id: "p4", brand: "Apex", name: "Alloy Mag Rim V2", price: "$275", rating: 5, - reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-beautiful-brownish-vintage-car-street-near-lake_181624-59346.jpg"}, - { - id: "p5", brand: "Apex", name: "Premium All-Season", price: "$150", rating: 5, - reviewCount: "9", imageSrc: "http://img.b2bpic.net/free-photo/top-view-hard-disk-with-white-light_23-2149413361.jpg"}, - { - id: "p6", brand: "Apex", name: "Off-Road Specialist", price: "$190", rating: 5, - reviewCount: "30", imageSrc: "http://img.b2bpic.net/free-photo/back-side-wheel-vintage-black-sedan-car_114579-4027.jpg"}, + { id: "p1", brand: "Elite", name: "Performance Sport Tyre", price: "$135", imageSrc: "http://img.b2bpic.net/free-photo/close-up-model-small-cars-overpass-traffic-concepts_1150-20142.jpg" }, + { id: "p2", brand: "Value", name: "City Commuter Tyre", price: "$80", imageSrc: "http://img.b2bpic.net/free-photo/outdoors-cobblestone-texture-with-car-wheel_23-2149432974.jpg" }, + { id: "p3", brand: "Premium", name: "Alloy Mag Rim", price: "$280", imageSrc: "http://img.b2bpic.net/free-photo/view-3d-film-roll_23-2150866027.jpg" }, + { id: "p4", brand: "Heavy", name: "All-Terrain Specialist", price: "$210", imageSrc: "http://img.b2bpic.net/free-photo/back-side-wheel-vintage-black-sedan-car_114579-4027.jpg" } ]} - title="Premium Selection" - description="View our current stock of tyres and quality mag rims ready for immediate installation." + title="Inventory & Rims" + description="Explore our curated selection of high-performance tyres and alloy rims ready for fitment." /> @@ -158,45 +101,27 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} testimonials={[ - { - id: "1", name: "John Doe", handle: "@johndoe", testimonial: "Excellent service and quick turnaround on rim repairs.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/mechanic-checking-tool-tool-box_1170-1277.jpg"}, - { - id: "2", name: "Jane Smith", handle: "@janesmith", testimonial: "Best tyre prices in the city, really helpful staff.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/family-car-salon-woman-buying-car-little-african-girl-with-mther_1157-45045.jpg"}, - { - id: "3", name: "Mike Ross", handle: "@mikeross", testimonial: "My car drives like new after their laser alignment.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-family-choosing-car-car-showroom_1303-15642.jpg"}, - { - id: "4", name: "Sarah Lee", handle: "@sarahlee", testimonial: "Professional, clean workshop. Highly recommend them.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/happy-mid-adult-car-mechanic-examining-stock-tires-auto-repair-shop_637285-7534.jpg"}, - { - id: "5", name: "David Kim", handle: "@davidk", testimonial: "Used tyres were in surprisingly great condition.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/benchman-owner-car-making-deal_114579-2805.jpg"}, + { id: "1", name: "Alex P.", handle: "@alexp", testimonial: "The wheel alignment service was fast and incredibly precise. Great experience.", rating: 5 }, + { id: "2", name: "Maria G.", handle: "@mariag", testimonial: "Expert rim repair! My alloy looks brand new again. Highly recommend.", rating: 5 }, + { id: "3", name: "Tom B.", handle: "@tomb", testimonial: "Best selection of used tyres in town. Affordable and reliable.", rating: 4 } ]} showRating={true} - title="Customer Stories" - description="Trusted by hundreds of drivers to keep their vehicles moving smoothly." + title="What Our Clients Say" + description="Join hundreds of drivers who trust Apex Tyres for their vehicle maintenance." />
@@ -205,13 +130,11 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1