Merge version_2 into main #3
72
src/app/doctors/page.tsx
Normal file
72
src/app/doctors/page.tsx
Normal file
@@ -0,0 +1,72 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
|
||||
import { Microscope, Stethoscope, HeartPulse, Activity } from "lucide-react";
|
||||
|
||||
export default function DoctorsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSmall"
|
||||
background="none"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Doctors", id: "/doctors" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
brandName="MedBook"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
title="Our Medical Specialists"
|
||||
description="Discover our directory of board-certified medical professionals. Each profile contains detailed information on qualifications, specialty focus areas, and certifications to help you make informed health decisions."
|
||||
members={[
|
||||
{
|
||||
id: "d1", name: "Dr. Sarah Miller", role: "Cardiologist", description: "Board certified in Cardiology with 15+ years of experience in invasive heart surgery and preventive cardiovascular care.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-male-doctor_171337-1533.jpg", socialLinks: [{ icon: Microscope, url: "#" }]
|
||||
},
|
||||
{
|
||||
id: "d2", name: "Dr. James Wilson", role: "Orthopedic Surgeon", description: "Expertise in sports medicine and complex joint reconstruction. Certified member of the American Academy of Orthopaedic Surgeons.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-doctor-holding-stethoscope_23-2148285702.jpg", socialLinks: [{ icon: Stethoscope, url: "#" }]
|
||||
},
|
||||
{
|
||||
id: "d3", name: "Dr. Elena Rodriguez", role: "General Physician", description: "Dedicated family practitioner focusing on comprehensive chronic disease management and wellness programs.", imageSrc: "http://img.b2bpic.net/free-photo/pharmacist-work_23-2150600109.jpg", socialLinks: [{ icon: HeartPulse, url: "#" }]
|
||||
},
|
||||
{
|
||||
id: "d4", name: "Dr. Kevin Chang", role: "Dermatologist", description: "Specialist in pediatric and adult dermatology. Laser surgery certification and extensive cosmetic practice history.", imageSrc: "http://img.b2bpic.net/free-photo/doctor-showing-results-tablet_329181-9276.jpg", socialLinks: [{ icon: Activity, url: "#" }]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="MedBook"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] },
|
||||
{ title: "Services", items: [{ label: "Doctors", href: "/doctors" }, { label: "Contact", href: "/#contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -31,14 +31,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Services", id: "features"},
|
||||
{
|
||||
name: "Doctors", id: "team"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "features" },
|
||||
{ name: "Doctors", id: "/doctors" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="MedBook"
|
||||
/>
|
||||
@@ -46,8 +42,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{
|
||||
variant: "radial-gradient"}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Professional Medical Care at Your Fingertips"
|
||||
description="Book appointments with top-rated specialists, view doctor certifications, and manage your health journey in one secure location."
|
||||
leftCarouselItems={[
|
||||
@@ -65,8 +60,7 @@ export default function LandingPage() {
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/senior-person-signs-financial-investment-contract-discussion-with-banker_482257-100585.jpg", imageAlt: "Medical admin" },
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Now", href: "#contact"},
|
||||
{ text: "Book Now", href: "#contact" },
|
||||
]}
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/mature-healthcare-worker-talking-her-patient-medical-appointment-clinic_637285-8987.jpg", alt: "Doctor checking patient" },
|
||||
@@ -91,8 +85,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Dedicated to Your Health & Well-being"
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More", href: "#"},
|
||||
{ text: "Learn More", href: "#" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -103,15 +96,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Online Booking", description: "Seamlessly schedule appointments with your preferred doctor.", bentoComponent: "reveal-icon", icon: Calendar,
|
||||
},
|
||||
{
|
||||
title: "Verified Profiles", description: "View certifications and background info for all specialists.", bentoComponent: "reveal-icon", icon: ShieldCheck,
|
||||
},
|
||||
{
|
||||
title: "Digital Records", description: "Secure access to your medical history and test results.", bentoComponent: "reveal-icon", icon: FileText,
|
||||
},
|
||||
{ title: "Online Booking", description: "Seamlessly schedule appointments with your preferred doctor.", bentoComponent: "reveal-icon", icon: Calendar },
|
||||
{ title: "Verified Profiles", description: "View certifications and background info for all specialists.", bentoComponent: "reveal-icon", icon: ShieldCheck },
|
||||
{ title: "Digital Records", description: "Secure access to your medical history and test results.", bentoComponent: "reveal-icon", icon: FileText },
|
||||
]}
|
||||
title="Comprehensive Care Features"
|
||||
description="Everything you need to manage your health securely."
|
||||
@@ -129,10 +116,10 @@ export default function LandingPage() {
|
||||
{ id: "d2", name: "Dr. James Wilson", role: "Orthopedic Surgeon", imageSrc: "http://img.b2bpic.net/free-photo/front-view-doctor-holding-stethoscope_23-2148285702.jpg" },
|
||||
{ id: "d3", name: "Dr. Elena Rodriguez", role: "General Physician", imageSrc: "http://img.b2bpic.net/free-photo/pharmacist-work_23-2150600109.jpg" },
|
||||
{ id: "d4", name: "Dr. Kevin Chang", role: "Dermatologist", imageSrc: "http://img.b2bpic.net/free-photo/doctor-showing-results-tablet_329181-9276.jpg" },
|
||||
{ id: "d5", name: "Dr. Alice Wong", role: "Pediatrician", imageSrc: "http://img.b2bpic.net/free-photo/young-confident-lady-doctor-medical-gown-looking_171337-5773.jpg" },
|
||||
]}
|
||||
title="Our Specialized Medical Team"
|
||||
description="Meet our highly qualified specialists with certified medical expertise."
|
||||
buttons={[{ text: "View All Doctors", href: "/doctors" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -183,7 +170,7 @@ export default function LandingPage() {
|
||||
logoText="MedBook"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] },
|
||||
{ title: "Services", items: [{ label: "Booking", href: "#" }, { label: "Doctors", href: "#" }] },
|
||||
{ title: "Services", items: [{ label: "Booking", href: "#" }, { label: "Doctors", href: "/doctors" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user