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 +} 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 +} 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 +} 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 ( + + + +
+ +
+ + +
+ ); +}