Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-03-30 03:24:42 +00:00

View File

@@ -16,31 +16,28 @@ export default function LandingPage() {
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "hero",
},
name: "Home", id: "hero"},
{
name: "About",
id: "about",
},
name: "About", id: "about"},
{
name: "Testimonials",
id: "testimonials",
},
name: "Testimonials", id: "testimonials"},
{
name: "FAQ",
id: "faq",
},
name: "FAQ", id: "faq"},
{
name: "Contact",
id: "contact",
},
name: "Contact", id: "contact"},
]}
brandName="Cassani Family Chiropractic"
/>
@@ -49,16 +46,13 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardScroll
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
title="Restoring Your Well-being with Compassion"
description="Experience holistic care tailored to your family's health and vitality at Cassani Family Chiropractic."
imageSrc="http://img.b2bpic.net/free-photo/female-patient-examining-spine-physiotherapist-vertebrology-center_1303-26424.jpg"
buttons={[
{
text: "Book an Appointment",
href: "#contact",
},
text: "Book an Appointment", href: "#contact"},
]}
/>
</div>
@@ -80,25 +74,15 @@ export default function LandingPage() {
author="Sarah J."
avatars={[
{
src: "http://img.b2bpic.net/free-photo/portrait-confident-man-home-office_329181-20664.jpg",
alt: "Patient 1",
},
src: "http://img.b2bpic.net/free-photo/portrait-confident-man-home-office_329181-20664.jpg", alt: "Patient 1"},
{
src: "http://img.b2bpic.net/free-photo/business-womens-office-working_23-2148461380.jpg",
alt: "Patient 2",
},
src: "http://img.b2bpic.net/free-photo/business-womens-office-working_23-2148461380.jpg", alt: "Patient 2"},
{
src: "http://img.b2bpic.net/free-photo/man-relaxing-sofa_329181-12161.jpg",
alt: "Patient 3",
},
src: "http://img.b2bpic.net/free-photo/man-relaxing-sofa_329181-12161.jpg", alt: "Patient 3"},
{
src: "http://img.b2bpic.net/free-photo/elder-woman-smiling-posing-graciously_23-2148419269.jpg",
alt: "Patient 4",
},
src: "http://img.b2bpic.net/free-photo/elder-woman-smiling-posing-graciously_23-2148419269.jpg", alt: "Patient 4"},
{
src: "http://img.b2bpic.net/free-photo/portrait-confident-man-home-office_329181-20664.jpg",
alt: "Patient 5",
},
src: "http://img.b2bpic.net/free-photo/portrait-confident-man-home-office_329181-20664.jpg", alt: "Patient 5"},
]}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
@@ -111,20 +95,11 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "What should I expect in the first visit?",
content: "Your first visit includes a consultation and a detailed assessment to understand your health needs.",
},
id: "1", title: "What should I expect in the first visit?", content: "Your first visit includes a consultation and a detailed assessment to understand your health needs."},
{
id: "2",
title: "Do you accept insurance?",
content: "We work with various insurance providers; please call our clinic to verify your coverage details.",
},
id: "2", title: "Do you accept insurance?", content: "We work with various insurance providers; please call our clinic to verify your coverage details."},
{
id: "3",
title: "Is chiropractic care safe for children?",
content: "Yes, our pediatric chiropractic care is gentle and safe for children of all ages.",
},
id: "3", title: "Is chiropractic care safe for children?", content: "Yes, our pediatric chiropractic care is gentle and safe for children of all ages."},
]}
title="Common Questions"
description="Answers to help you understand our approach and what to expect during your first visit."
@@ -136,16 +111,13 @@ export default function LandingPage() {
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Get in touch"
title="Start Your Journey Today"
description="Book your appointment with Cassani Family Chiropractic and take the first step toward optimal health."
buttons={[
{
text: "Book Now",
href: "#",
},
text: "Book Now", href: "#"},
]}
/>
</div>
@@ -154,29 +126,19 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Family Wellness",
href: "#",
},
label: "Family Wellness", href: "#"},
{
label: "Sports Injury",
href: "#",
},
label: "Sports Injury", href: "#"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "#",
},
label: "About Us", href: "#"},
{
label: "Contact",
href: "#",
},
label: "Contact", href: "#"},
],
},
]}
@@ -187,4 +149,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}