From 0d4aa3b5b2f06cf4b2d1a971d7463b4cd473261d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 05:45:35 +0000 Subject: [PATCH] Add src/app/contact-us/page.tsx --- src/app/contact-us/page.tsx | 196 ++++++++++++++++++++++++++++++++++++ 1 file changed, 196 insertions(+) create mode 100644 src/app/contact-us/page.tsx diff --git a/src/app/contact-us/page.tsx b/src/app/contact-us/page.tsx new file mode 100644 index 0000000..ac1760e --- /dev/null +++ b/src/app/contact-us/page.tsx @@ -0,0 +1,196 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { MapPin, Phone, Mail, Heart } from 'lucide-react'; +import { useState } from 'react'; + +export default function ContactUsPage() { + const [formData, setFormData] = useState({ + name: '', + phone: '', + email: '', + message: '' + }); + + const handleSubmit = (data: Record) => { + console.log('Form submitted:', data); + // Handle form submission logic here + }; + + const handlePhoneClick = () => { + window.location.href = 'tel:+91-033-2421-5719'; + }; + + return ( + + + +
+
+
+

Contact Us

+

Get in touch with Kumar Surgical Clinic for appointments and inquiries

+
+ +
+ {/* Address */} +
+
+ +
+

Address

+

+ 235/3/1 N.S.C Bose Road
+ Bansdroni, Usha
+ Kolkata 700047
+ West Bengal, India +

+
+ + {/* Phone Numbers */} +
+
+ +
+

Phone

+
+ +

or

+ +
+
+ + {/* Email */} +
+
+ +
+

Email

+ + kslctpadesk@gmail.com + +
+
+ + {/* Google Maps Embed */} +
+