4 Commits

Author SHA1 Message Date
72bec3777c Update src/app/page.tsx 2026-03-11 19:25:49 +00:00
97662fa7bf Update src/app/page.tsx 2026-03-11 19:24:56 +00:00
d883d02f5d Merge version_1 into main
Merge version_1 into main
2026-03-11 17:31:16 +00:00
074922b27d Merge version_1 into main
Merge version_1 into main
2026-03-11 17:30:47 +00:00

View File

@@ -12,6 +12,11 @@ import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Calendar, CheckCircle, Heart, Home, MapPin, Smile, Star, Users, Zap } from "lucide-react"; import { Calendar, CheckCircle, Heart, Home, MapPin, Smile, Star, Users, Zap } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
const handleAppointmentSubmit = () => {
// Open appointment booking link or form
window.location.href = "tel:+14099331234";
};
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="directional-hover" defaultButtonVariant="directional-hover"
@@ -36,7 +41,7 @@ export default function LandingPage() {
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ text: "Book Appointment", href: "#contact" }} button={{ text: "Book Appointment", onClick: handleAppointmentSubmit }}
/> />
</div> </div>
@@ -51,7 +56,7 @@ export default function LandingPage() {
imageAlt="Modern dental clinic interior" imageAlt="Modern dental clinic interior"
mediaAnimation="slide-up" mediaAnimation="slide-up"
buttons={[ buttons={[
{ text: "Request Appointment", href: "#contact" }, { text: "Request Appointment", onClick: handleAppointmentSubmit },
{ text: "Call Now", href: "tel:+14099331234" } { text: "Call Now", href: "tel:+14099331234" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
@@ -165,7 +170,7 @@ export default function LandingPage() {
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-dentist-patient_23-2149164297.jpg?_wi=3" } phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-dentist-patient_23-2149164297.jpg?_wi=3" }
} }
]} ]}
buttons={[{ text: "Book Your Visit", href: "#contact" }]} buttons={[{ text: "Book Your Visit", onClick: handleAppointmentSubmit }]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
/> />
</div> </div>
@@ -209,6 +214,7 @@ export default function LandingPage() {
inputPlaceholder="Enter your email" inputPlaceholder="Enter your email"
buttonText="Request Appointment" buttonText="Request Appointment"
termsText="We respect your privacy. Your appointment request will be reviewed by our team." termsText="We respect your privacy. Your appointment request will be reviewed by our team."
onSubmit={handleAppointmentSubmit}
/> />
</div> </div>