Merge version_2 into main #6

Merged
bender merged 1 commits from version_2 into main 2026-03-12 19:06:21 +00:00

View File

@@ -11,6 +11,7 @@ import TeamCardOne from '@/components/sections/team/TeamCardOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import { Award, CheckCircle, Heart, TrendingUp, Users } from 'lucide-react';
export default function LandingPage() {
@@ -34,7 +35,7 @@ export default function LandingPage() {
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Team", id: "team" },
{ name: "Reviews", id: "testimonials" }
{ name: "FAQ", id: "faq" }
]}
button={{ text: "Schedule Online", href: "#contact" }}
animateOnLoad={true}
@@ -200,6 +201,40 @@ export default function LandingPage() {
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
title="Frequently Asked Questions"
description="Find answers to common questions about our services and treatment approaches"
tag="Help & Support"
tagAnimation="slide-up"
faqs={[
{
id: "1", title: "What conditions do you treat?", content: "We specialize in sports injuries, chronic pain management, post-surgical rehabilitation, orthopedic conditions, and performance optimization. Our evidence-based approach is tailored to each patient's unique needs and goals."
},
{
id: "2", title: "Do you accept insurance?", content: "Yes, we welcome most insurance plans and offer direct billing to your workplace benefits. We'll verify your coverage during your initial consultation to ensure you understand your benefits."
},
{
id: "3", title: "How long does treatment typically take?", content: "Treatment duration varies based on your condition and recovery goals. Most patients see significant improvement within 4-8 weeks, though some conditions require longer-term management. We'll provide a clear timeline during your assessment."
},
{
id: "4", title: "What makes your approach different?", content: "Our luxury practice combines evidence-based protocols with personalized, one-on-one attention. We focus on identifying root causes rather than just treating symptoms, ensuring lasting results and injury prevention."
},
{
id: "5", title: "Can I book online?", content: "Yes, you can schedule your comprehensive assessment directly through our booking system. We offer flexible appointment times to accommodate busy schedules, including evening and weekend slots."
},
{
id: "6", title: "What should I expect on my first visit?", content: "Your first visit includes a detailed movement assessment, health history review, and goal-setting discussion. We'll explain our three-phase treatment approach and create a personalized recovery roadmap tailored to your needs."
}
]}
textboxLayout="default"
faqsAnimation="slide-up"
useInvertedBackground={true}
animationType="smooth"
ariaLabel="Frequently asked questions"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
title="Voices From Our Patients"
@@ -267,7 +302,7 @@ export default function LandingPage() {
title: "Quick Links", items: [
{ label: "Insurance Info", href: "#" },
{ label: "Referral Program", href: "#" },
{ label: "Appointment FAQ", href: "#" },
{ label: "Appointment FAQ", href: "#faq" },
{ label: "Careers", href: "#" }
]
},