From 0d8ab287b511b046fd241b634dbd2924c2b6e40b Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 15:14:34 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index fb8993d..d7cf4a2 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -104,7 +104,7 @@ export default function BlogPage() { { name: "Shop", id: "/shop" }, { name: "About", id: "#about" }, { name: "Testimonials", id: "#testimonials" }, - { name: "Contact", id: "#contact" } + { name: "Contact", id: "/contact" } ]} brandName="Kvitok" bottomLeftText="Fresh Flowers Daily" @@ -136,13 +136,13 @@ export default function BlogPage() { title: "Shop", items: [ { label: "All Arrangements", href: "/shop" }, { label: "Collections", href: "/#feature" }, - { label: "Custom Orders", href: "/#contact" } + { label: "Custom Orders", href: "/contact" } ] }, { title: "Company", items: [ { label: "About Us", href: "/#about" }, - { label: "Contact Us", href: "/#contact" }, + { label: "Contact Us", href: "/contact" }, { label: "Testimonials", href: "/#testimonials" } ] }, From 5a23ec4383072ddfba25190a71e0f3d62991e86c Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 15:14:35 +0000 Subject: [PATCH 2/4] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 98 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..eb6005c --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,98 @@ +"use client" + +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; + +export default function ContactPage() { + return ( + + + +
+ +
+ + +
+ ); +} From 75d4097f468b2d7157e476c882152884921f9f7a Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 15:14:36 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2f04863..8138c76 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,7 @@ export default function LandingPage() { {name: "Shop", id: "/shop"}, {name: "About", id: "about"}, {name: "Testimonials", id: "testimonials"}, - {name: "Contact", id: "contact"} + {name: "Contact", id: "/contact"} ]} brandName="Kvitok" bottomLeftText="Fresh Flowers Daily" From 9168392c5387c0991c5b65f393d7580d3340ca91 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 15:14:37 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index b827f0b..10e20bb 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -24,11 +24,11 @@ export default function ShopPage() {