Update src/app/page.tsx

This commit is contained in:
2026-03-18 11:29:53 +00:00
parent ec64b362c0
commit 9bc9e6370a

View File

@@ -8,7 +8,7 @@ import FeatureHoverPattern from "@/components/sections/feature/featureHoverPatte
import TeamCardFive from "@/components/sections/team/TeamCardFive";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactText from "@/components/sections/contact/ContactText";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Award, Heart, HelpCircle, Shield, Smile, Sparkles, Users, Zap } from "lucide-react";
@@ -218,17 +218,25 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to transform your smile? Contact Shiva Dental Clinic today to schedule your consultation. Our friendly team is here to answer any questions and help you achieve optimal oral health."
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Call Now", href: "tel:+919876543210" },
{ text: "WhatsApp Us", href: "https://wa.me/919876543210" },
{ text: "Email Us", href: "mailto:info@shivadental.com" }
<ContactSplitForm
title="Get in Touch"
description="Ready to transform your smile? Fill out the form below and our team will contact you shortly to schedule your consultation."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true },
{ name: "phone", type: "tel", placeholder: "Your Phone Number", required: true }
]}
textarea={{
name: "message", placeholder: "Tell us about your dental concerns or questions...", rows: 5,
required: true
}}
useInvertedBackground={true}
animationType="entrance-slide"
ariaLabel="Contact Shiva Dental Clinic"
imageSrc="http://img.b2bpic.net/free-photo/side-view-nurses-patient-clinic_23-2149741220.jpg?_wi=3"
imageAlt="Contact Shiva Dental Clinic"
mediaAnimation="blur-reveal"
mediaPosition="right"
buttonText="Send Message"
ariaLabel="Contact form for Shiva Dental Clinic"
/>
</div>