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 ( + +
+ + +
+ +
+ + +
+
+ ); +} 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 +} 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 +} 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 +} 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 +}