Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 95c17467f2 | |||
| 27a971185b | |||
| b78f187ce6 |
205
src/app/page.tsx
205
src/app/page.tsx
@@ -9,7 +9,8 @@ import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/F
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import { Activity, Award, Calendar, Droplet, Gauge, Heart, MapPin, Shield, User } from "lucide-react";
|
||||
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 (
|
||||
@@ -29,22 +30,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Approach",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ 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"
|
||||
/>
|
||||
@@ -52,20 +42,12 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
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",
|
||||
},
|
||||
{ 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"
|
||||
@@ -78,31 +60,10 @@ export default function LandingPage() {
|
||||
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: "Accepting New Patients",
|
||||
},
|
||||
{
|
||||
icon: Shield,
|
||||
label: "Insurance Coverage",
|
||||
value: "Multiple Plans Accepted",
|
||||
},
|
||||
{ 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"
|
||||
/>
|
||||
@@ -114,70 +75,41 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
icon: Activity,
|
||||
title: "Preventive Care",
|
||||
description: "Routine checkups and wellness screenings tailored to all ages.",
|
||||
},
|
||||
{
|
||||
icon: Activity,
|
||||
title: "Chronic Disease Management",
|
||||
description: "Continuous, coordinated care for long-term health management.",
|
||||
},
|
||||
{
|
||||
icon: User,
|
||||
title: "Personalized Consultations",
|
||||
description: "Dedicated time for patient questions, health goals, and concerns.",
|
||||
},
|
||||
{
|
||||
icon: Gauge,
|
||||
title: "Acute Care Services",
|
||||
description: "Prompt medical attention for common illnesses and minor injuries.",
|
||||
},
|
||||
{
|
||||
icon: Droplet,
|
||||
title: "Vaccination & Immunization",
|
||||
description: "Essential immunizations for children, adults, and seniors.",
|
||||
},
|
||||
{ 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="Exceptional Health Services"
|
||||
description="Dr. Yang provides high-quality primary and preventive care tailored to each patient's specific health journey."
|
||||
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: "Do you accept new patients?",
|
||||
content: "Yes, Dr. Yang is currently accepting new patients. Please call our clinic to verify insurance and check availability.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "What insurance plans do you accept?",
|
||||
content: "We participate in a variety of insurance plans. Please contact your insurance provider or call the office to confirm.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "How can I schedule an appointment?",
|
||||
content: "Appointments can be scheduled through the Optum patient portal or by calling our office directly.",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Is parking available?",
|
||||
content: "Yes, our Colorado Springs facility offers complimentary, easily accessible parking for all our patients.",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "What should I bring to my first visit?",
|
||||
content: "Please bring your photo ID, current insurance card, and a list of any medications you are currently taking.",
|
||||
},
|
||||
{ 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="Common questions regarding Dr. Yang's practice and patient care."
|
||||
description="We are here to help."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -185,18 +117,11 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get in Touch"
|
||||
title="Schedule Your Visit"
|
||||
description="We look forward to helping you achieve your best health. Contact our Colorado Springs office today to schedule a consultation with Dr. Joseph Yang."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Office",
|
||||
href: "tel:+17195550100",
|
||||
},
|
||||
]}
|
||||
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>
|
||||
|
||||
@@ -205,51 +130,15 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168431.jpg"
|
||||
logoText="Dr. Joseph Yang, DO"
|
||||
columns={[
|
||||
{
|
||||
title: "Clinic Info",
|
||||
items: [
|
||||
{
|
||||
label: "About Optum",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Locations",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{
|
||||
label: "Patient Portal",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Insurance",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Use",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ 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 in his medical office."
|
||||
imageAlt="Portrait of Dr. Joseph Yang."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #fbfcfd;
|
||||
--background: #f0fff4;
|
||||
--card: #ffffff;
|
||||
--foreground: #0a1f33;
|
||||
--primary-cta: #15479c;
|
||||
--foreground: #064e3b;
|
||||
--primary-cta: #059669;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f1f5f9;
|
||||
--secondary-cta: #e0f2f1;
|
||||
--secondary-cta-text: #0a1f33;
|
||||
--accent: #cbd5e1;
|
||||
--background-accent: #e2e8f0;
|
||||
--accent: #b2dfdb;
|
||||
--background-accent: #80cbc4;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user