3 Commits

Author SHA1 Message Date
8427b115fb Update src/app/page.tsx 2026-06-10 03:54:41 +00:00
c2e4bd8e92 Merge version_2 into main
Merge version_2 into main
2026-06-10 03:53:07 +00:00
11dd5625de Update src/app/page.tsx 2026-06-10 03:53:04 +00:00

View File

@@ -10,7 +10,7 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar
import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import { Smile, Award, Users, Star, Instagram, Facebook } from "lucide-react"; import { Smile, Award, Users, Star } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -190,25 +190,22 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <ContactSplitForm
title="Book Your Appointment Today" title="Book Your Appointment Today"
description="Ready for a healthier, brighter smile? Contact us to schedule your visit. We're conveniently located in Kondhwa, Pune, and look forward to welcoming you." description="Ready for a healthier, brighter smile? Contact us to schedule your visit. We're conveniently located at Kausar Baug, Kondhwa, Pune, and look forward to welcoming you for your next dental visit."
inputs={[ inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true }, { name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true }, { name: "email", type: "email", placeholder: "Your Email", required: true },
{ name: "phone", type: "tel", placeholder: "Your Phone Number", required: true } { name: "phone", type: "tel", placeholder: "Your Phone Number", required: true }
]} ]}
multiSelect={{ multiSelect={{
name: "service", label: "Preferred Service", options: ["Emergency Care", "X-ray", "Online Dentist Booking", "Cosmetic Procedures", "Check-ups", "Veneers & Crowns", "Teeth Whitening", "Extractions", "Teeth Cleaning", "Teeth Reshaping", "Dental Implants", "Dentures & Bridges", "Paediatrics", "Bonding", "Fillings and Sealants", "Mouth Guards", "Oral Surgery", "Root Canals", "Aligners", "Braces"] name: "service", label: "Preferred Service", options: ["Emergency Care", "X-ray", "Online Dentist Booking", "Cosmetic Procedures", "Check-ups", "Veneers & Crowns", "Teeth Whitening", "Extractions", "Teeth Reshaping", "Dental Implants", "Dentures & Bridges", "Paediatrics", "Bonding", "Fillings and Sealants", "Mouth Guards", "Oral Surgery", "Root Canals", "Aligners", "Braces"]
}} }}
textarea={{ textarea={{
name: "message", placeholder: "Your Message", rows: 4, name: "message", placeholder: "Your Message", rows: 4,
required: false required: false
}} }}
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/beautiful-city_1127-3350.jpg"
imageAlt="Exterior of Poona Dental Clinic"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Send Message" buttonText="Send Message"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EvYekTTC6LCQtqRsXL1ZYkMmRA/uploaded-1781063660759-wkgk2ial.jpg"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
@@ -217,10 +214,6 @@ export default function LandingPage() {
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=os3d00" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=os3d00"
logoAlt="Poona Dental Clinic Logo" logoAlt="Poona Dental Clinic Logo"
copyrightText="© 2024 Poona Dental Clinic. All rights reserved." copyrightText="© 2024 Poona Dental Clinic. All rights reserved."
socialLinks={[
{ icon: Instagram, href: "https://www.instagram.com/poonadentalclinic", ariaLabel: "Instagram" },
{ icon: Facebook, href: "https://www.facebook.com/poonadentalclinic", ariaLabel: "Facebook" }
]}
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>