From cb99716717a2cd9277e155bfcb03a8100c0579d3 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 15:08:35 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) 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 +} -- 2.49.1 From b8551da6b34b4ed3ecaaa4a34493a3e45bd71fba Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 15:08:36 +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 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 +} -- 2.49.1 From b81b043a1b98444d025d566cca1d1fc6dae13300 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 15:08:37 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 +} -- 2.49.1 From b2fed322fc2c00cd69ac7d1eaabfd8c8c889af86 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 15:08:37 +0000 Subject: [PATCH 4/4] Add src/app/shop/page.tsx --- src/app/shop/page.tsx | 112 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 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..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 ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1