From ecec418b7aa1854a3d5572209c4539d06f751e6c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 21:54:31 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 38 ++++++++++++++------------------------ 1 file changed, 14 insertions(+), 24 deletions(-) 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() {