diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index f76f8ff..e32eed5 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,25 +1,12 @@ "use client"; import { ThemeProvider } from "@/components/theme/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import { useState } from "react"; - -const ContactPage = () => { - const [formData, setFormData] = useState({ - name: "", email: "", message: ""}); - - const handleInputChange = (e: React.ChangeEvent) => { - const { name, value } = e.target; - setFormData((prev) => ({ ...prev, [name]: value })); - }; - - const handleSubmit = (e: React.FormEvent) => { - e.preventDefault(); - // Handle form submission - console.log("Form submitted:", formData); - setFormData({ name: "", email: "", message: "" }); - }; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import ContactForm from "@/components/form/ContactForm"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Mail, Twitter, Linkedin } from "lucide-react"; +export default function ContactPage() { return ( { cardStyle="solid" primaryButtonStyle="gradient" secondaryButtonStyle="glass" - headingFontWeight="bold" + headingFontWeight="semibold" > - -
-
-

Get in Touch

-

- Ready to turn your content into viral clips? Fill out the form below and our team will get back to you within 24 hours. -

- -
-
- - -
- -
- - -
- -
- -