From dab3041b5c15875915fb75a50fc587506b7f5d45 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 16:52:18 +0000 Subject: [PATCH 1/5] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 59 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 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..cd05b00 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,59 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function ContactPage() { + return ( + +
+ + +
+ +
+ + +
+
+ ); +} From f8623526be16c0109fbceaae591c2ca8d56f476d Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 16:52:20 +0000 Subject: [PATCH 2/5] 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 491a381..4448188 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1258,4 +1258,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} From 989293271260cb60cc40af65429e77348f13cb6d Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 16:52:21 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 52 +++++++++++++++++++++++++++++++++++------------- 1 file changed, 38 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c0840ac..04673eb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,6 @@ import AboutMetric from '@/components/sections/about/AboutMetric'; import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { Sparkles, Leaf, Heart, Truck, Award } from 'lucide-react'; @@ -33,7 +32,7 @@ export default function LandingPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "Pricing", id: "/pricing" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]} button={{ text: "Order Now", href: "/products" @@ -173,18 +172,43 @@ export default function LandingPage() { /> -
- +
@@ -193,4 +217,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} From 633853135ccef8ebb8c65a3fdc27779e5662c156 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 16:52:21 +0000 Subject: [PATCH 4/5] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 788defb..4d68cf3 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -28,7 +28,7 @@ export default function PricingPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "Pricing", id: "/pricing" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]} button={{ text: "Order Now", href: "/products" @@ -74,7 +74,7 @@ export default function PricingPage() { }, { id: "4", price: "$199.99", name: "For corporate events and weddings", buttons: [ - { text: "Contact Us", href: "contact" }, + { text: "Contact Us", href: "/contact" }, { text: "Learn More", href: "/pricing" }, ], features: [ @@ -94,4 +94,4 @@ export default function PricingPage() { ); -} \ No newline at end of file +} From 7684e01b7c7bfdfae444c1ea1dfabf044992651d Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 16:52:22 +0000 Subject: [PATCH 5/5] Update src/app/products/page.tsx --- src/app/products/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 5710d50..f6ba0bb 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -67,7 +67,7 @@ export default function ProductsPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "Pricing", id: "/pricing" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]} button={{ text: "Order Now", href: "/products" @@ -95,4 +95,4 @@ export default function ProductsPage() { ); -} \ No newline at end of file +}