From dcf8ba510c57a46fe9e031a56c33a9e6ca47476b Mon Sep 17 00:00:00 2001 From: development Date: Fri, 23 Jan 2026 13:36:05 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 39fd921..c648009 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,6 +5,11 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; export default function ContactPage() { + const handleFormSubmit = (data: Record) => { + console.log('Form submitted:', data); + // Handle form submission logic here + }; + return (