Files
7cd818da-1c9f-4afb-9ea2-d3e…/src/app/page.tsx
2026-04-07 19:54:50 +00:00

144 lines
6.5 KiB
TypeScript

"use client";
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 FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { Activity, Award, Calendar, CheckCircle, Droplet, Gauge, Heart, MapPin, Shield, User, Star } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="largeSmall"
background="aurora"
cardStyle="layered-gradient"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "hero" },
{ name: "Approach", id: "about" },
{ name: "Why Us", id: "services" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
brandName="Dr. Joseph Yang, DO"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
background={{ variant: "gradient-bars" }}
logoText="Dr. Joseph Yang, DO"
description="Providing personalized, compassionate Family Medicine for you and your family in Colorado Springs, CO. Your partner in long-term wellness."
buttons={[
{ text: "Book an Appointment", href: "#contact" },
{ text: "Learn More", href: "#about" },
]}
imageSrc="http://img.b2bpic.net/free-photo/empty-bright-medical-office-having-computer-table-with-coronavirus-cell-screen-virus-examination-hospital-room-with-nobody-it-equipped-with-professional-tools-virus-illustration_482257-39808.jpg"
mediaAnimation="slide-up"
imageAlt="Modern, clean, and welcoming family medical practice office interior."
/>
</div>
<div id="about" data-section="about">
<AboutMetric
useInvertedBackground={false}
title="Comprehensive Care Philosophy"
metrics={[
{ icon: Award, label: "Clinical Expertise", value: "Family Medicine Specialist" },
{ icon: Heart, label: "Patient Approach", value: "Compassionate Care" },
{ icon: MapPin, label: "Clinic Location", value: "Colorado Springs, CO" },
{ icon: Calendar, label: "Availability", value: "24/7 Support Available" },
]}
metricsAnimation="slide-up"
/>
</div>
<div id="services" data-section="services">
<FeatureBorderGlow
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
features={[
{ icon: CheckCircle, title: "24/7 Availability", description: "Access to care whenever you need it, around the clock." },
{ icon: Activity, title: "Preventive Care", description: "Routine checkups and wellness screenings tailored to all ages." },
{ icon: User, title: "Personalized Consultations", description: "Dedicated time for patient goals and concerns." },
{ icon: Gauge, title: "Acute Care Services", description: "Prompt medical attention for common illnesses and injuries." },
]}
title="Why Choose Our Clinic"
description="Dr. Yang prioritizes patient-centered care, providing 24/7 support and clinical excellence in Colorado Springs."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
cardTitle="What Our Patients Say"
cardTag="Patient Testimonials"
cardTagIcon={Star}
cardAnimation="slide-up"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Sarah M.", imageSrc: "https://img.b2bpic.net/free-photo/portrait-smiling-young-woman-with-long-hair_23-2148270503.jpg" },
{ id: "2", name: "David L.", imageSrc: "https://img.b2bpic.net/free-photo/handsome-man-with-beard-smiling-camera_23-2148270535.jpg" },
{ id: "3", name: "Elena P.", imageSrc: "https://img.b2bpic.net/free-photo/portrait-smiling-senior-woman_23-2148270519.jpg" },
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "How do I access 24/7 care?", content: "For urgent medical matters after hours, please call our primary clinic line for routing instructions." },
{ id: "2", title: "What insurance plans are accepted?", content: "We work with a broad range of major insurance providers. Call our office to verify your coverage." },
]}
title="Patient Information"
description="We are here to help."
faqsAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={true}
background={{ variant: "plain" }}
tag="Get in Touch"
title="Ready to Prioritize Your Health?"
description="Our Colorado Springs clinic is open and ready to serve you 24/7. Reach out today to start your path to better wellness."
buttons={[{ text: "Call Our Clinic", href: "tel:+17195550100" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168431.jpg"
logoText="Dr. Joseph Yang, DO"
columns={[
{ title: "Quick Links", items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#services" }] },
{ title: "Contact Details", items: [{ label: "123 Medical Plaza, CO", href: "#" }, { label: "+1 719-555-0100", href: "tel:+17195550100" }] },
{ title: "Resources", items: [{ label: "Patient Portal", href: "#" }, { label: "Privacy Policy", href: "#" }] },
]}
copyrightText="© 2025 Dr. Joseph Yang, DO | All Rights Reserved"
imageAlt="Portrait of Dr. Joseph Yang."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}