From 0f8a383b688c1999fafd068be2b7965a075790fe Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 12:18:40 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 2d092e4..3313e3d 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -32,11 +32,12 @@ export default function BlogPage() { { name: "Vehicles", id: "vehicles" }, { name: "Pricing", id: "pricing" }, { name: "About", id: "about" }, + { name: "Support", id: "support" }, { name: "Contact", id: "contact" } ]} brandName="Go to Car" bottomLeftText="Premium Vehicle Rentals" - bottomRightText="hello@gotocar.com" + bottomRightText="rentcar@webild.io" /> -- 2.49.1 From ac0f171bfabe8f768541ace6243dfce6d9cc4c9a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 12:18:41 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 336 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 334 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index fcb0eb1..debed2f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import ContactText from '@/components/sections/contact/ContactText'; import FooterCard from '@/components/sections/footer/FooterCard'; +import LegalSection from '@/components/legal/LegalSection'; import { Sparkles, Zap, CheckCircle, Star, Award, Heart, Trophy, Facebook, Twitter, Instagram } from "lucide-react"; export default function LandingPage() { @@ -35,11 +36,12 @@ export default function LandingPage() { { name: "Vehicles", id: "vehicles" }, { name: "Pricing", id: "pricing" }, { name: "About", id: "about" }, + { name: "Support", id: "support" }, { name: "Contact", id: "contact" } ]} brandName="Go to Car" bottomLeftText="Premium Vehicle Rentals" - bottomRightText="hello@gotocar.com" + bottomRightText="rentcar@webild.io" /> @@ -231,6 +233,336 @@ export default function LandingPage() { /> +
+ +
+ +
+ +
+ +
+ +
+
-- 2.49.1 From 95568b225997583f68e784f4f3cb61f132fa7ace Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 12:18:42 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index f69f2b2..11efc06 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -87,11 +87,12 @@ export default function ProductPage({ params }: ProductPageProps) { navItems={[ { name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, + { name: "Support", id: "support" }, { name: "Contact", id: "contact" } ]} brandName="Go to Car" bottomLeftText="Premium Vehicle Rentals" - bottomRightText="hello@gotocar.com" + bottomRightText="rentcar@webild.io" button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -134,11 +135,12 @@ export default function ProductPage({ params }: ProductPageProps) { navItems={[ { name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, + { name: "Support", id: "support" }, { name: "Contact", id: "contact" } ]} brandName="Go to Car" bottomLeftText="Premium Vehicle Rentals" - bottomRightText="hello@gotocar.com" + bottomRightText="rentcar@webild.io" button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -188,11 +190,12 @@ export default function ProductPage({ params }: ProductPageProps) { navItems={[ { name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, + { name: "Support", id: "support" }, { name: "Contact", id: "contact" } ]} brandName="Go to Car" bottomLeftText="Premium Vehicle Rentals" - bottomRightText="hello@gotocar.com" + bottomRightText="rentcar@webild.io" button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1 From 2351b02c2f17a33a0f977ffd4e169bb0aac61a7d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 12:18:43 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 0310857..d218413 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -39,11 +39,12 @@ export default function ShopPage() { navItems={[ { name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, + { name: "Support", id: "support" }, { name: "Contact", id: "contact" } ]} brandName="Go to Car" bottomLeftText="Premium Vehicle Rentals" - bottomRightText="hello@gotocar.com" + bottomRightText="rentcar@webild.io" button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -85,11 +86,12 @@ export default function ShopPage() { navItems={[ { name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, + { name: "Support", id: "support" }, { name: "Contact", id: "contact" } ]} brandName="Go to Car" bottomLeftText="Premium Vehicle Rentals" - bottomRightText="hello@gotocar.com" + bottomRightText="rentcar@webild.io" button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1