Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-05-02 08:59:18 +00:00

View File

@@ -3,14 +3,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Activity, Award, CheckCircle, Heart, Leaf, Users, Baby } from "lucide-react";
export default function LandingPage() {
@@ -131,12 +131,13 @@ export default function LandingPage() {
</div>
<div id="team" data-section="team">
<TeamCardSix
<TeamCardFive
animationType="slide-up"
textboxLayout="default"
gridVariant="one-large-left-three-stacked-right"
useInvertedBackground={false}
members={[
title="Our Clinical Staff"
description="Meet the expert professionals caring for your well-being."
team={[
{
id: "1", name: "Dr. Amina Zahra", role: "Hijama Specialist", imageSrc: "http://img.b2bpic.net/free-photo/smiling-portrait-young-woman-sitting-gray-sofa-looking-camera_23-2148053192.jpg"},
{
@@ -144,19 +145,23 @@ export default function LandingPage() {
{
id: "3", name: "Sara Khan", role: "Massage & Baby Care", imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-doctor-hospital-premises_107420-84766.jpg"},
{
id: "4", name: "Layla Omer", role: "Hirudotherapy Clinic Head", imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15151.jpg"},
id: "4", name: "Layla Omer", role: "Hirudotherapy Head", imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15151.jpg"},
]}
title="Our Clinical Practitioners"
description="Meet our team of licensed wellness experts dedicated to your health."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
<TestimonialCardSixteen
animationType="slide-up"
textboxLayout="default"
gridVariant="bento-grid"
useInvertedBackground={true}
kpiItems={[
{ value: "5000+", label: "Patients Served" },
{ value: "98%", label: "Satisfaction Rate" },
{ value: "10+", label: "Years Active" }
]}
title="Patient Success Stories"
description="See what our clients say about their healing journeys with us."
testimonials={[
{
id: "1", name: "Layla M.", role: "Patient", company: "Local Community", rating: 5,
@@ -167,50 +172,37 @@ export default function LandingPage() {
{
id: "3", name: "Sarah A.", role: "Client", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/lesbian-couple-drinking-coffee_23-2148661087.jpg"},
{
id: "4", name: "Hana Z.", role: "Patient", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-woman-talking-her-doctor-medical-clinic_637285-9073.jpg"},
{
id: "5", name: "Amira S.", role: "Mother", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/elegant-couple-draws-art-studio_1157-30469.jpg"},
]}
title="Patient Success Stories"
description="Hear how our wellness clinic has supported the health journeys of families."
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
<FaqSplitMedia
textboxLayout="default"
useInvertedBackground={false}
faqsAnimation="slide-up"
mediaAnimation="slide-up"
faqs={[
{
id: "1", title: "Is Hijama painful?", content: "Our practitioners use sterile equipment and proven techniques to ensure the most comfortable session possible."},
{
id: "2", title: "Are services safe for babies?", content: "Yes, our prenatal and infant massage sessions are performed by certified professionals specifically trained in gentle pediatric protocols."},
{
id: "3", title: "Do I need a referral?", content: "No, you do not need a referral to book a consultation with our specialists."},
id: "3", title: "How do I book?", content: "You can book an appointment directly through our contact form or by calling the clinic office."},
]}
title="Frequently Asked Questions"
description="Clear answers about our procedures and clinical standards."
faqsAnimation="slide-up"
description="Common inquiries about our clinical services."
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
<ContactSplit
tag="Book Now"
title="Visit Our Clinic"
description="Located in the heart of the city, we welcome you for a consultation to restore your health."
imageSrc="http://img.b2bpic.net/free-photo/doctor-sitting-desk-hospital_23-2148858349.jpg"
useInvertedBackground={true}
background={{
variant: "radial-gradient"}}
tag="Contact Us"
title="Start Your Healing Journey"
description="Ready to improve your health? Get in touch with Hijomavera today to schedule your consultation."
buttons={[
{
text: "Call Clinic", href: "tel:+123456789"},
{
text: "Book Online", href: "#"},
]}
background={{ variant: "plain" }}
/>
</div>