Merge version_1 into main #1
210
src/app/page.tsx
210
src/app/page.tsx
@@ -11,7 +11,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import { Activity, Award, Clock, Smile, Star } from "lucide-react";
|
||||
import { Activity, Award, Clock, Smile, Star, Zap, Eye, Heart, Shield } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,22 +31,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Experience",
|
||||
id: "experience",
|
||||
},
|
||||
{
|
||||
name: "Our Doctors",
|
||||
id: "team",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Experience", id: "experience" },
|
||||
{ name: "Our Doctors", id: "team" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Miami Dental District"
|
||||
/>
|
||||
@@ -54,65 +42,23 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Redefining the Modern Dental Experience"
|
||||
description="At Miami Dental District, we blend world-class clinical expertise with a boutique, luxury environment. Your comfort is our signature standard."
|
||||
avatars={[
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DtIVj3BFLPFlHiXkf0bSDZOPYW/uploaded-1779095143424-2i0310sr.jpg",
|
||||
alt: "Dr. Yanelys",
|
||||
},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DtIVj3BFLPFlHiXkf0bSDZOPYW/uploaded-1779095143424-tjemxbvx.jpg",
|
||||
alt: "Dr. Pino",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-patient-looking-mirror-clinic_107420-73992.jpg",
|
||||
alt: "Patient",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-young-sincere-beautiful-african-girl-smiling_176420-11234.jpg",
|
||||
alt: "Patient",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-girl-thinks_93675-133061.jpg",
|
||||
alt: "Patient",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Schedule Your Consultation",
|
||||
href: "#contact",
|
||||
},
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DtIVj3BFLPFlHiXkf0bSDZOPYW/uploaded-1779095143424-2i0310sr.jpg", alt: "Dr. Yanelys" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DtIVj3BFLPFlHiXkf0bSDZOPYW/uploaded-1779095143424-tjemxbvx.jpg", alt: "Dr. Pino" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiling-patient-looking-mirror-clinic_107420-73992.jpg", alt: "Patient" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-young-sincere-beautiful-african-girl-smiling_176420-11234.jpg", alt: "Patient" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-girl-thinks_93675-133061.jpg", alt: "Patient" },
|
||||
]}
|
||||
buttons={[{ text: "Schedule Your Consultation", href: "#contact" }]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Elite Care",
|
||||
icon: Star,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Modern Tech",
|
||||
icon: Activity,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Pain-Free",
|
||||
icon: Smile,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Concierge",
|
||||
icon: Clock,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Miami's Best",
|
||||
icon: Award,
|
||||
},
|
||||
{ type: "text-icon", text: "Elite Care", icon: Star },
|
||||
{ type: "text-icon", text: "Modern Tech", icon: Activity },
|
||||
{ type: "text-icon", text: "Pain-Free", icon: Smile },
|
||||
{ type: "text-icon", text: "Concierge", icon: Clock },
|
||||
{ type: "text-icon", text: "Miami's Best", icon: Award },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -122,12 +68,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
tag="About Us"
|
||||
title="Where Elite Artistry Meets Unmatched Patient Care"
|
||||
buttons={[
|
||||
{
|
||||
text: "View Our Services",
|
||||
href: "#experience",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "View Our Services", href: "#experience" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -136,30 +77,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Miraculous Precision",
|
||||
description: "Techniques ensuring comfort during every procedure.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-space-with-maquette-table-design-urban-property-plan-building-model-layout-nobody-office-with-architecture-project-real-estate-development-presentation_482257-29970.jpg",
|
||||
buttonIcon: "Zap",
|
||||
},
|
||||
{
|
||||
title: "Absolute Transparency",
|
||||
description: "Step-by-step clarity regarding your treatment plan.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/celebration-labour-day-with-monochrome-view-woman-working-her-job_23-2151295981.jpg",
|
||||
buttonIcon: "Eye",
|
||||
},
|
||||
{
|
||||
title: "Culture of Warmth",
|
||||
description: "An elite staff that treats you like family.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-black-female-doctor-talking-couple-showing-them-medical-test-results-touchpad-consultations-clinic_637285-1755.jpg",
|
||||
buttonIcon: "Heart",
|
||||
},
|
||||
{
|
||||
title: "Modern Comfort",
|
||||
description: "State-of-the-art facilities designed for peace.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medical-instruments_1157-18593.jpg",
|
||||
buttonIcon: "Shield",
|
||||
},
|
||||
{ title: "Miraculous Precision", description: "Techniques ensuring comfort during every procedure.", imageSrc: "http://img.b2bpic.net/free-photo/empty-space-with-maquette-table-design-urban-property-plan-building-model-layout-nobody-office-with-architecture-project-real-estate-development-presentation_482257-29970.jpg", buttonIcon: Zap },
|
||||
{ title: "Absolute Transparency", description: "Step-by-step clarity regarding your treatment plan.", imageSrc: "http://img.b2bpic.net/free-photo/celebration-labour-day-with-monochrome-view-woman-working-her-job_23-2151295981.jpg", buttonIcon: Eye },
|
||||
{ title: "Culture of Warmth", description: "An elite staff that treats you like family.", imageSrc: "http://img.b2bpic.net/free-photo/happy-black-female-doctor-talking-couple-showing-them-medical-test-results-touchpad-consultations-clinic_637285-1755.jpg", buttonIcon: Heart },
|
||||
{ title: "Modern Comfort", description: "State-of-the-art facilities designed for peace.", imageSrc: "http://img.b2bpic.net/free-photo/medical-instruments_1157-18593.jpg", buttonIcon: Shield },
|
||||
]}
|
||||
title="The Patient Experience"
|
||||
description="Revolutionizing the journey from anxiety to ease with boutique-level care."
|
||||
@@ -172,18 +93,8 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
team={[
|
||||
{
|
||||
id: "dr-yanelys",
|
||||
name: "Dr. Yanelys",
|
||||
role: "Master of Gentle Dentistry",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DtIVj3BFLPFlHiXkf0bSDZOPYW/uploaded-1779095143424-2i0310sr.jpg",
|
||||
},
|
||||
{
|
||||
id: "dr-pino",
|
||||
name: "Dr. Pino",
|
||||
role: "Lead Clinician & Educator",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DtIVj3BFLPFlHiXkf0bSDZOPYW/uploaded-1779095143424-tjemxbvx.jpg",
|
||||
},
|
||||
{ id: "dr-yanelys", name: "Dr. Yanelys", role: "Master of Gentle Dentistry", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DtIVj3BFLPFlHiXkf0bSDZOPYW/uploaded-1779095143424-2i0310sr.jpg" },
|
||||
{ id: "dr-pino", name: "Dr. Pino", role: "Lead Clinician & Educator", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DtIVj3BFLPFlHiXkf0bSDZOPYW/uploaded-1779095143424-tjemxbvx.jpg" },
|
||||
]}
|
||||
title="Our World-Class Doctors"
|
||||
description="Meet the visionary experts behind our patient-centric dental care philosophy."
|
||||
@@ -192,44 +103,15 @@ export default function LandingPage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Verified Patient",
|
||||
handle: "@dental-client",
|
||||
testimonial: "Dr. Yanelys is a great dentist! Her hands are miraculous!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-happy-dentist_23-2148396150.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Verified Patient",
|
||||
handle: "@dental-client",
|
||||
testimonial: "Dr. Pino is an amazing doctor and I do love the staff.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-woman-going-through-medical-test-results-with-her-doctor-clinic_637285-1779.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Satisfied Client",
|
||||
handle: "@dental-client",
|
||||
testimonial: "The atmosphere is excellent and very friendly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-female-patient-waiting-have-dental-procedure-dentist_23-2148985766.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Loyal Patient",
|
||||
handle: "@dental-client",
|
||||
testimonial: "A pain-free and transparent experience.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-man-with-brown-skin-big-smile-posing-beside-white-wall-portrait-glad-black-haired-guy-laughing-girl-big-earphones-enjoying-music_197531-3878.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Happy Smile",
|
||||
handle: "@dental-client",
|
||||
testimonial: "Everything was explained thoroughly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-doctor-patient_1170-2163.jpg",
|
||||
},
|
||||
{ id: "1", name: "Verified Patient", handle: "@dental-client", testimonial: "Dr. Yanelys is a great dentist! Her hands are miraculous!", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-happy-dentist_23-2148396150.jpg" },
|
||||
{ id: "2", name: "Verified Patient", handle: "@dental-client", testimonial: "Dr. Pino is an amazing doctor and I do love the staff.", imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-woman-going-through-medical-test-results-with-her-doctor-clinic_637285-1779.jpg" },
|
||||
{ id: "3", name: "Satisfied Client", handle: "@dental-client", testimonial: "The atmosphere is excellent and very friendly.", imageSrc: "http://img.b2bpic.net/free-photo/young-female-patient-waiting-have-dental-procedure-dentist_23-2148985766.jpg" },
|
||||
{ id: "4", name: "Loyal Patient", handle: "@dental-client", testimonial: "A pain-free and transparent experience.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-man-with-brown-skin-big-smile-posing-beside-white-wall-portrait-glad-black-haired-guy-laughing-girl-big-earphones-enjoying-music_197531-3878.jpg" },
|
||||
{ id: "5", name: "Happy Smile", handle: "@dental-client", testimonial: "Everything was explained thoroughly.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-doctor-patient_1170-2163.jpg" },
|
||||
]}
|
||||
title="Elite Clientele Feedback"
|
||||
description="Hear directly from those who have experienced our boutique dental service."
|
||||
@@ -241,21 +123,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Do you accept new patients?",
|
||||
content: "Yes, we are currently accepting new elite patients by appointment.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "What should I bring to my first appointment?",
|
||||
content: "Please bring a valid ID and your dental insurance information.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Do you offer financing options?",
|
||||
content: "Yes, we discuss all transparent financial options during your consultation.",
|
||||
},
|
||||
{ id: "q1", title: "Do you accept new patients?", content: "Yes, we are currently accepting new elite patients by appointment." },
|
||||
{ id: "q2", title: "What should I bring to my first appointment?", content: "Please bring a valid ID and your dental insurance information." },
|
||||
{ id: "q3", title: "Do you offer financing options?", content: "Yes, we discuss all transparent financial options during your consultation." },
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Everything you need to know about your next visit."
|
||||
@@ -266,9 +136,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Contact"
|
||||
title="Reserve Your Private Appointment"
|
||||
description="Experience dental excellence at 7036 Coral Way, Miami, FL 33155. Concierge: +1 305-441-7700."
|
||||
@@ -278,14 +146,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Miami Dental District"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "© 2024 Miami Dental District",
|
||||
href: "#",
|
||||
}}
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "© 2024 Miami Dental District", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user