diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..831fb7f --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,320 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; +import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; +import TeamCardOne from '@/components/sections/team/TeamCardOne'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Award, CheckCircle, Heart, HelpCircle, Shield, Sparkles, Stethoscope, Star, Zap, Users, TrendingUp, Target, Eye, Users2, Award as AwardIcon } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file 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 */} +
+