From af5aaf05d7703e66eb3aa1df4f51a6fa38693ccd Mon Sep 17 00:00:00 2001 From: development Date: Mon, 2 Feb 2026 14:32:06 +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 8e9e7b8..90bc4d0 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -34,7 +34,8 @@ export default function BlogPage() { { name: "About", id: "about" }, { name: "Why Us", id: "features" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, + { name: "Shop", id: "/shop" } ]} button={{ text: "Shop Now", href: "products" }} /> @@ -78,4 +79,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} From 0566f66bb47c91fc23c91a40a5fafd6668530570 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 2 Feb 2026 14:32:07 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82ddc5b..bc66db2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1265,4 +1265,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} From de394d5fef3512886520885d61ee4e5cc8354f82 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 2 Feb 2026 14:32:08 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b20dded..983848c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,8 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Why Us", id: "features" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, + { name: "Shop", id: "/shop" } ]} button={{ text: "Shop Now", href: "products" @@ -196,4 +197,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} From 0e1a0788f900b2a3b3cb2418b2cd91d9242d0d30 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 2 Feb 2026 14:32:09 +0000 Subject: [PATCH 4/4] Add src/app/shop/page.tsx --- src/app/shop/page.tsx | 100 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 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..1759cdb --- /dev/null +++ b/src/app/shop/page.tsx @@ -0,0 +1,100 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Sparkles, Instagram, Twitter, Facebook } from "lucide-react"; + +export default function ShopPage() { + return ( + + + +
+ +
+ + +
+ ); +}