From 947e93381c83f2342ea2b230d1cdaf19454d458c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 07:50:43 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 621a4ec..a01d110 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -32,6 +32,7 @@ export default function BlogPage() { {"name":"Services","id":"services"}, {"name":"Pricing","id":"pricing"}, {"name":"Process","id":"process"}, + {"name":"Gallery","id":"gallery"}, {"name":"About","id":"about"} ]} button={{"text":"Book Now","href":"#contact"}} @@ -76,6 +77,7 @@ export default function BlogPage() { "title":"Company", "items":[ {"label":"About Us","href":"#about"}, {"label":"Our Process","href":"#process"}, + {"label":"Gallery","href":"#gallery"}, {"label":"Testimonials","href":"#testimonials"}, {"label":"Contact","href":"#contact"} ] @@ -93,4 +95,4 @@ export default function BlogPage() { ); -} +} \ No newline at end of file -- 2.49.1 From b5ca2d6d8c7990f69d419980a390b6f26882d5ec Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 07:50:44 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 46 +++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 43 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 18a1997..1530cba 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,8 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { Shield, Sparkles, CheckCircle, DollarSign, Star, Crown, Award, Phone } from "lucide-react"; +import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; +import { Shield, Sparkles, CheckCircle, DollarSign, Star, Crown, Award, Phone, ArrowRight } from "lucide-react"; export default function EliteDetailingPage() { return ( @@ -33,6 +34,7 @@ export default function EliteDetailingPage() { { name: "Services", id: "services" }, { name: "Pricing", id: "pricing" }, { name: "Process", id: "process" }, + { name: "Gallery", id: "gallery" }, { name: "About", id: "about" } ]} button={{ @@ -63,7 +65,7 @@ export default function EliteDetailingPage() { tagIcon={Shield} title="Transforming vehicles into works of art with meticulous attention to detail and premium products" buttons={[ - { text: "View Our Portfolio", href: "#services" } + { text: "View Our Portfolio", href: "#gallery" } ]} useInvertedBackground={false} /> @@ -94,6 +96,43 @@ export default function EliteDetailingPage() { /> + +
); -} +} \ No newline at end of file -- 2.49.1 From 59e0f8e0e5842e9834cd3ac57eabde66a5a8a506 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 07:50:45 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 05586ad..791cb1c 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -89,8 +89,8 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Services", id: "services" }, { name: "Pricing", id: "pricing" }, { name: "Process", id: "process" }, - { name: "About", id: "about" }, - { name: "Shop", id: "/shop" } + { name: "Gallery", id: "gallery" }, + { name: "About", id: "about" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -117,6 +117,7 @@ export default function ProductPage({ params }: ProductPageProps) { title: "Company", items: [ { label: "About Us", href: "#about" }, { label: "Our Process", href: "#process" }, + { label: "Gallery", href: "#gallery" }, { label: "Testimonials", href: "#testimonials" }, { label: "Contact", href: "#contact" } ] @@ -159,8 +160,8 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Services", id: "services" }, { name: "Pricing", id: "pricing" }, { name: "Process", id: "process" }, - { name: "About", id: "about" }, - { name: "Shop", id: "/shop" } + { name: "Gallery", id: "gallery" }, + { name: "About", id: "about" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -195,6 +196,7 @@ export default function ProductPage({ params }: ProductPageProps) { title: "Company", items: [ { label: "About Us", href: "#about" }, { label: "Our Process", href: "#process" }, + { label: "Gallery", href: "#gallery" }, { label: "Testimonials", href: "#testimonials" }, { label: "Contact", href: "#contact" } ] @@ -236,8 +238,8 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Services", id: "services" }, { name: "Pricing", id: "pricing" }, { name: "Process", id: "process" }, - { name: "About", id: "about" }, - { name: "Shop", id: "/shop" } + { name: "Gallery", id: "gallery" }, + { name: "About", id: "about" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -297,6 +299,7 @@ export default function ProductPage({ params }: ProductPageProps) { title: "Company", items: [ { label: "About Us", href: "#about" }, { label: "Our Process", href: "#process" }, + { label: "Gallery", href: "#gallery" }, { label: "Testimonials", href: "#testimonials" }, { label: "Contact", href: "#contact" } ] @@ -314,4 +317,4 @@ export default function ProductPage({ params }: ProductPageProps) { ); -} +} \ No newline at end of file -- 2.49.1 From d5ab28d1477fa3e69ecad007edc7a643f7549154 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 07:50:45 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 6608f73..1487fa4 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -42,8 +42,8 @@ export default function ShopPage() { { name: "Services", id: "services" }, { name: "Pricing", id: "pricing" }, { name: "Process", id: "process" }, - { name: "About", id: "about" }, - { name: "Shop", id: "/shop" } + { name: "Gallery", id: "gallery" }, + { name: "About", id: "about" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -70,6 +70,7 @@ export default function ShopPage() { title: "Company", items: [ { label: "About Us", href: "#about" }, { label: "Our Process", href: "#process" }, + { label: "Gallery", href: "#gallery" }, { label: "Testimonials", href: "#testimonials" }, { label: "Contact", href: "#contact" } ] @@ -111,8 +112,8 @@ export default function ShopPage() { { name: "Services", id: "services" }, { name: "Pricing", id: "pricing" }, { name: "Process", id: "process" }, - { name: "About", id: "about" }, - { name: "Shop", id: "/shop" } + { name: "Gallery", id: "gallery" }, + { name: "About", id: "about" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -147,6 +148,7 @@ export default function ShopPage() { title: "Company", items: [ { label: "About Us", href: "#about" }, { label: "Our Process", href: "#process" }, + { label: "Gallery", href: "#gallery" }, { label: "Testimonials", href: "#testimonials" }, { label: "Contact", href: "#contact" } ] @@ -164,4 +166,4 @@ export default function ShopPage() { ); -} +} \ No newline at end of file -- 2.49.1