diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 81423e2..f65c791 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; import { Mail, Phone, MapPin, Clock } from "lucide-react"; import Link from "next/link"; @@ -15,11 +15,6 @@ export default function ContactPage() { { name: "Çalışma Programı", id: "/schedule" }, ]; - const handleFormSubmit = (data: Record) => { - console.log("Form submitted:", data); - alert("Teşekkürler! Mesajınız alındı. Kısa sürede sizinle iletişime geçeceğiz."); - }; - return ( - {/* Contact Form */} - + {/* Contact Form Section */} +
+ +
@@ -121,9 +109,11 @@ export default function ContactPage() {