From d7ecf69fe6a5dff2bdd5332280be3d82a439879c Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 14:59:42 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index fadbe9e..bbcebc9 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -2,7 +2,7 @@ import { useEffect, useState } from "react"; import ReactLenis from "lenis/react"; -import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; +import BlogCardOne from '@/components/sections/blog/BlogCardOne'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; @@ -104,6 +104,7 @@ export default function BlogPage() { { name: "Fleet", id: "products" }, { name: "Pricing", id: "pricing" }, { name: "Why Us", id: "features" }, + { name: "Shop", id: "shop" }, { name: "Contact", id: "contact" } ]} bottomLeftText="Premium Vehicle Rentals" @@ -115,7 +116,7 @@ export default function BlogPage() {

Loading posts...

) : ( - Date: Thu, 29 Jan 2026 14:59:43 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 693d0da..1fc50cf 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -57,6 +57,7 @@ export default function ContactPage() { { name: "Fleet", id: "products" }, { name: "Pricing", id: "pricing" }, { name: "Why Us", id: "features" }, + { name: "Shop", id: "shop" }, { name: "Contact", id: "contact" } ]} bottomLeftText="Premium Vehicle Rentals" From 2f24fac6df1adfa2f070475c14b9e8e37e75e8a4 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 14:59:44 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index a95e1e0..299ed16 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,6 +34,7 @@ export default function LandingPage() { { name: "Fleet", id: "products" }, { name: "Pricing", id: "pricing" }, { name: "Why Us", id: "features" }, + { name: "Shop", id: "shop" }, { name: "Contact", id: "contact" } ]} bottomLeftText="Premium Vehicle Rentals" @@ -222,6 +223,38 @@ export default function LandingPage() { /> +
+ +
+
Date: Thu, 29 Jan 2026 14:59:45 +0000 Subject: [PATCH 4/4] Add src/app/shop/page.tsx --- src/app/shop/page.tsx | 92 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 src/app/shop/page.tsx diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx new file mode 100644 index 0000000..26b82b6 --- /dev/null +++ b/src/app/shop/page.tsx @@ -0,0 +1,92 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Star } from 'lucide-react'; + +export default function ShopPage() { + return ( + + + +
+ +
+ + +
+ ); +}