diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index bf63b18..fb8993d 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -54,7 +54,8 @@ export default function BlogPage() { const url = `${apiUrl}/posts/${projectId}?status=published`; const response = await fetch(url, { method: "GET", headers: { - "Content-Type": "application/json"}, + "Content-Type": "application/json" + }, }); if (response.ok) { @@ -99,10 +100,11 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2cc54b6..01417a1 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 e2336c5..2f04863 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,6 +31,7 @@ export default function LandingPage() { navItems={[ {name: "Home", id: "hero"}, {name: "Products", id: "products"}, + {name: "Shop", id: "/shop"}, {name: "About", id: "about"}, {name: "Testimonials", id: "testimonials"}, {name: "Contact", id: "contact"} @@ -47,7 +48,7 @@ export default function LandingPage() { description="Discover the beauty of fresh, handcrafted floral arrangements. From elegant roses to vibrant sunflowers, we bring nature's finest blooms to your doorstep with care and passion." background={{ variant: "radial-gradient" }} buttons={[ - { text: "Shop Now", href: "#products" }, + { text: "Shop Now", href: "/shop" }, { text: "Learn More", href: "#about" } ]} layoutOrder="default" @@ -234,7 +235,7 @@ export default function LandingPage() { columns={[ { title: "Shop", items: [ - { label: "All Arrangements", href: "#products" }, + { label: "All Arrangements", href: "/shop" }, { label: "Collections", href: "#feature" }, { label: "Custom Orders", href: "#contact" } ] @@ -260,4 +261,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..b827f0b --- /dev/null +++ b/src/app/shop/page.tsx @@ -0,0 +1,112 @@ +"use client" + +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import { Sparkles } from 'lucide-react'; + +export default function ShopPage() { + return ( + + + +
+ +
+ + +
+ ); +}