Merge version_2 into main #10

Merged
bender merged 1 commits from version_2 into main 2026-03-24 13:22:10 +00:00

View File

@@ -3,9 +3,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
@@ -174,17 +175,18 @@ export default function LandingPage() {
description="Fill out the form below, and we'll call you within 10 minutes to confirm your appointment. Same-day consultation available!\n\n**Clinic Address:** A5, Kailash Colony, Block A, Greater Kailash, New Delhi, Delhi 110048\n**Phone:** 098101 93145\n**Hours:** Open · Closes 7 PM\n\n[Get Directions](https://www.google.com/maps/search/A5,+Kailash+Colony,+Block+A,+Greater+Kailash,+New+Delhi,+Delhi+110048)"
imageSrc="http://img.b2bpic.net/free-photo/female-doctor-listening-diverse-male-patients-clinic-lobby_482257-131184.jpg"
imageAlt="Clinic interior with map"
mediaAnimation="opacity"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Your Name, Phone, Symptoms (optional), Preferred Time"
buttonText="Request Appointment"
termsText="Well call you within 10 minutes to confirm your appointment."
onSubmit={() => alert('Appointment Requested!')}
tagAnimation="slide-up"
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
faqs={[
@@ -202,7 +204,7 @@ export default function LandingPage() {
</div>
<div id="call-to-action" data-section="call-to-action">
<TextAbout
<ContactCTA
useInvertedBackground={true}
title="Compassionate Care with Decades of Experience"
buttons={[
@@ -212,14 +214,18 @@ export default function LandingPage() {
text: "📅 Book Appointment", href: "#appointment"},
]}
tag="About Dr. R S Mishra"
description="Contact us today to experience dedicated and expert medical care."
tagAnimation="slide-up"
buttonAnimation="slide-up"
background={{ variant: "radial-gradient" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterSimple
columns={[
{
items: [
title: "Contact Us", items: [
{
label: "📞 +91 98101 93145", href: "tel:+919810193145"},
{
@@ -227,7 +233,7 @@ export default function LandingPage() {
],
},
{
items: [
title: "Quick Links", items: [
{
label: "Home", href: "#hero"},
{
@@ -239,7 +245,7 @@ export default function LandingPage() {
],
},
{
items: [
title: "Information", items: [
{
label: "Open · Closes 7 PM", href: "#"},
{
@@ -249,10 +255,11 @@ export default function LandingPage() {
],
},
]}
logoText="Dr. R S Mishra Clinic"
bottomLeftText="© 2023 Dr. R S Mishra Clinic. All rights reserved."
bottomRightText="Designed by Webuild"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}