From 9a3b3535a1865dd3fe25513f5b3cf53b01310150 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 13:33:25 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 6295dc8..5e71296 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -6,6 +6,7 @@ import { useBlogPosts } from "@/hooks/useBlogPosts"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import BlogCardOne from '@/components/sections/blog/BlogCardOne'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import Link from 'next/link'; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); @@ -29,8 +30,6 @@ export default function BlogPage() { brandName="Balka Flowers" navItems={[ { name: "Home", id: "/" }, - { name: "Blog", id: "/blog" }, - { name: "Shop", id: "/shop" }, { name: "Contact", id: "/contact" } ]} button={{ text: "Shop Now", href: "/shop" }} -- 2.49.1 From d6244c9173a31d7db7ff1257a73429a00baa8260 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 13:33:26 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 7b783fd..7c5f2a0 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,6 +5,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import Link from 'next/link'; export default function ContactPage() { return ( @@ -26,8 +27,6 @@ export default function ContactPage() { brandName="Balka Flowers" navItems={[ { name: "Home", id: "/" }, - { name: "Blog", id: "/blog" }, - { name: "Shop", id: "/shop" }, { name: "Contact", id: "/contact" } ]} button={{ text: "Shop Now", href: "/shop" }} @@ -48,7 +47,7 @@ export default function ContactPage() { ]} textarea={{ name: 'message', placeholder: 'Type your message...', rows: 5, required: true }} useInvertedBackground={false} - videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34my1kGeblbsCcwUUCcjBY9WFkg/uploaded-1771684785214-9g6egt6v.mp4" + imageSrc="https://img.b2bpic.net/free-photo/beautiful-flowers-bouquet-with-copy-space_23-2148911578.jpg" mediaAnimation="slide-up" mediaPosition="right" buttonText="Send Message" -- 2.49.1 From e2007aea742d0d94122ef95d6623e26a008a61b6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 13:33:27 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0376a25..86043db 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,7 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import { Mail } from 'lucide-react'; +import Link from 'next/link'; export default function LandingPage() { return ( @@ -29,8 +30,6 @@ export default function LandingPage() { brandName="Balka Flowers" navItems={[ { name: "Home", id: "/" }, - { name: "Blog", id: "/blog" }, - { name: "Shop", id: "/shop" }, { name: "Contact", id: "/contact" } ]} button={{ text: "Shop Now", href: "/shop" }} -- 2.49.1 From 72f4d88e5f9a67f4ae3a4aaace26686d89fc63db Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 13:33:28 +0000 Subject: [PATCH 4/5] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index ff1f85f..f4a4fa1 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -11,6 +11,7 @@ import { useProductDetail } from "@/hooks/useProductDetail"; import { useCart } from "@/hooks/useCart"; import { useCheckout } from "@/hooks/useCheckout"; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import Link from 'next/link'; interface ProductPageProps { params: Promise<{ id: string }>; @@ -92,7 +93,8 @@ function ProductPageContent({ params }: ProductPageProps) {