diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 3bd9ea9..eed2e75 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,16 +3,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import { useState } from "react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; export default function ContactPage() { const [submitted, setSubmitted] = useState(false); const handleSubmit = (email: string) => { - // Simulate form submission console.log("Form submitted with email:", email); setSubmitted(true); }; @@ -23,72 +21,50 @@ export default function ContactPage() { defaultTextAnimation="reveal-blur" borderRadius="pill" contentWidth="small" - sizing="largeSizeMediumTitles" - background="aurora" + sizing="medium" + background="circleGradient" cardStyle="glass-elevated" - primaryButtonStyle="double-inset" - secondaryButtonStyle="radial-glow" + primaryButtonStyle="gradient" + secondaryButtonStyle="glass" headingFontWeight="normal" > -
+
{submitted ? (

Thank You!

Your inquiry has been sent successfully. We'll be in touch soon.

) : ( - handleSubmit(email)} + description="Ready to get more customers? Fill out the form below and we'll reach out to discuss your project." + buttons={[{ text: "Submit Inquiry", onClick: () => handleSubmit("user@example.com") }]} + background={{ variant: "plain" }} + useInvertedBackground={false} /> )}
-
- -
- -