diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index d6a8404..1378e67 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,21 +1,24 @@ "use client"; -import { Heart, HelpCircle } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Facebook, Instagram, Twitter, Linkedin } from "lucide-react"; +import { MessageSquare, Mail, Phone, MapPin, Facebook, Instagram, Twitter, Linkedin } from "lucide-react"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, { name: "Meal Plans", id: "meal-plans" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" } ]; + const handleContactSubmit = (data: Record) => { + console.log("Contact form submitted:", data); + }; + return ( - {/* Navbar */} - {/* CTA/Contact Section */} -
-
- +
+ +
+ +
+ +
+ +
+
+
+
+

Other Ways to Reach Us

+

We're available through multiple channels to best serve your needs

+
+ +
+
+
+ +
+

Email

+

support@nutriflow.com

+

We respond within 24 hours

+
+ +
+
+ +
+

Phone

+

1-800-NUTRIFLOW

+

Mon-Fri, 9AM-6PM EST

+
+ +
+
+ +
+

Location

+

123 Wellness Ave

+

San Francisco, CA 94102

+
+
+
- {/* FAQ Section */} -
-
- -
-
- - {/* Footer */}