From f2dab8a4a7fb9cee4a7e6c853a0799d93b69a90d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:58:01 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f32a5b5..613b2ab 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -9,18 +9,24 @@ const navItems = [ { name: "About Us", id: "/about" }, { name: "Gallery", id: "/gallery" }, { name: "Reviews", id: "/reviews" }, - { name: "FAQ", id: "/faq" }, + { name: "Showroom", id: "/showroom" }, + { name: "Contact", id: "/contact" }, ]; export default function AboutPage() { return ( - - - + + +
+ +
); } \ No newline at end of file -- 2.49.1 From 0b544eda8997dc24d0e66b3cef6b41d7cc24df0a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:58:01 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 34 +++++++++++++++------------------- 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 44984aa..1254949 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -4,22 +4,24 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "About Us", id: "/about" }, + { name: "Gallery", id: "/gallery" }, + { name: "Reviews", id: "/reviews" }, + { name: "Showroom", id: "/showroom" }, + { name: "Contact", id: "/contact" }, +]; export default function ContactPage() { return ( - + - -
+ +
- ); -- 2.49.1 From b476a29087adb0b62a2d1ece210d2f01d8005983 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:58:02 +0000 Subject: [PATCH 3/5] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 4999c3a..1f1da0b 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -9,23 +9,29 @@ const navItems = [ { name: "About Us", id: "/about" }, { name: "Gallery", id: "/gallery" }, { name: "Reviews", id: "/reviews" }, - { name: "FAQ", id: "/faq" }, + { name: "Showroom", id: "/showroom" }, + { name: "Contact", id: "/contact" }, ]; export default function GalleryPage() { return ( - - - + + +
+ +
); } \ No newline at end of file -- 2.49.1 From 93ae0c50ac4735681f85f4b6b90b4b437c41f8b0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:58:02 +0000 Subject: [PATCH 4/5] Update src/app/reviews/page.tsx --- src/app/reviews/page.tsx | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index d40b2ca..ccfa6fa 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -9,18 +9,25 @@ const navItems = [ { name: "About Us", id: "/about" }, { name: "Gallery", id: "/gallery" }, { name: "Reviews", id: "/reviews" }, - { name: "FAQ", id: "/faq" }, + { name: "Showroom", id: "/showroom" }, + { name: "Contact", id: "/contact" }, ]; export default function ReviewsPage() { return ( - - - + + +
+ +
); } \ No newline at end of file -- 2.49.1 From 80bacdceb7a6b3c636c9b93a11d2b946a2b31591 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:58:02 +0000 Subject: [PATCH 5/5] Update src/app/showroom/page.tsx --- src/app/showroom/page.tsx | 45 +++++++++++++++------------------------ 1 file changed, 17 insertions(+), 28 deletions(-) diff --git a/src/app/showroom/page.tsx b/src/app/showroom/page.tsx index 13a8841..e778065 100644 --- a/src/app/showroom/page.tsx +++ b/src/app/showroom/page.tsx @@ -3,34 +3,26 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "About Us", id: "/about" }, + { name: "Gallery", id: "/gallery" }, + { name: "Reviews", id: "/reviews" }, + { name: "Showroom", id: "/showroom" }, + { name: "Contact", id: "/contact" }, +]; export default function ShowroomPage() { return ( - + - -
- + +
+
+
-
); -- 2.49.1