Update src/app/page.tsx
This commit is contained in:
248
src/app/page.tsx
248
src/app/page.tsx
@@ -32,21 +32,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "features",
|
||||
},
|
||||
name: "Services", id: "features"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "testimonials"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="DentArt Chicago"
|
||||
/>
|
||||
@@ -55,32 +47,15 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
title="Excellence in Dental Artistry"
|
||||
description="Comprehensive dental care for the entire family in South Loop, Chicago. From routine cleanings to advanced reconstruction, we create beautiful, healthy smiles."
|
||||
tag="DentArt Chicago"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-cleaning-child-s-teeth_23-2149195890.jpg?_wi=1",
|
||||
imageAlt: "Dentist office",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-cleaning-child-s-teeth_23-2149195890.jpg", imageAlt: "Dentist office"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-talking-with-female-patient-while-working-dental-jaw_23-2147862038.jpg?_wi=1",
|
||||
imageAlt: "Smiling patient",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-adjusting-light_107420-74172.jpg",
|
||||
imageAlt: "Dentist adjusting light",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2957.jpg",
|
||||
imageAlt: "dentist in the process",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-patient-gesturing-ok-sign-front-two-male-dentist_23-2147862057.jpg",
|
||||
imageAlt: "Smiling female patient gesturing ok sign",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-talking-with-female-patient-while-working-dental-jaw_23-2147862038.jpg", imageAlt: "Smiling patient"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
rating={5}
|
||||
@@ -93,7 +68,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Your Smile, Our Passion"
|
||||
description="DentArt Chicago is dedicated to providing high-quality dental care with advanced technology and a patient-centered approach. Our clinic in the South Loop offers everything from preventative checkups to full mouth reconstruction."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dentist-doctor-interrogating-woman-taking-notes-clipboard-standing-waiting-area-young-patient-explaining-dental-problem-stomatologist-speaking-crowded-reception-clinic_482257-3579.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dentist-doctor-interrogating-woman-taking-notes-clipboard-standing-waiting-area-young-patient-explaining-dental-problem-stomatologist-speaking-crowded-reception-clinic_482257-3579.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -104,48 +79,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "general",
|
||||
label: "Foundation",
|
||||
title: "General & Family Dentistry",
|
||||
items: [
|
||||
"Dental exams",
|
||||
"Cleanings",
|
||||
"Fluoride treatment",
|
||||
"Composite fillings",
|
||||
],
|
||||
id: "general", label: "Foundation", title: "General & Family Dentistry", items: [
|
||||
"Dental exams", "Cleanings", "Fluoride treatment", "Composite fillings"],
|
||||
},
|
||||
{
|
||||
id: "restorative",
|
||||
label: "Restoration",
|
||||
title: "Restorative Dentistry",
|
||||
items: [
|
||||
"Dental bridges",
|
||||
"Dental crowns",
|
||||
"Full mouth reconstruction",
|
||||
"Root canals",
|
||||
],
|
||||
id: "restorative", label: "Restoration", title: "Restorative Dentistry", items: [
|
||||
"Dental bridges", "Dental crowns", "Full mouth reconstruction", "Root canals"],
|
||||
},
|
||||
{
|
||||
id: "cosmetic",
|
||||
label: "Aesthetics",
|
||||
title: "Cosmetic Dentistry",
|
||||
items: [
|
||||
"Veneers",
|
||||
"Zoom Whitening",
|
||||
"Smile Makeover",
|
||||
"Composite Bonding",
|
||||
],
|
||||
id: "cosmetic", label: "Aesthetics", title: "Cosmetic Dentistry", items: [
|
||||
"Veneers", "Zoom Whitening", "Smile Makeover", "Composite Bonding"],
|
||||
},
|
||||
{
|
||||
id: "specialized",
|
||||
label: "Complexity",
|
||||
title: "Advanced Care",
|
||||
items: [
|
||||
"Sleep Apnea Treatment",
|
||||
"Therapeutic Botox",
|
||||
"Implant Retained Dentures",
|
||||
"Neuromuscular Dentistry",
|
||||
],
|
||||
id: "specialized", label: "Complexity", title: "Advanced Care", items: [
|
||||
"Sleep Apnea Treatment", "Therapeutic Botox", "Implant Retained Dentures", "Neuromuscular Dentistry"],
|
||||
},
|
||||
]}
|
||||
title="Our Specialized Dental Services"
|
||||
@@ -159,60 +106,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah Miller",
|
||||
date: "2023-10-15",
|
||||
title: "Implants",
|
||||
quote: "The team made me feel completely comfortable. My implants look incredible and have changed my life.",
|
||||
tag: "Restorative",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/front-view-woman-testing-colours_23-2150538710.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-cleaning-child-s-teeth_23-2149195890.jpg?_wi=2",
|
||||
imageAlt: "happy patient portrait",
|
||||
},
|
||||
id: "t1", name: "Sarah Miller", date: "2023-10-15", title: "Implants", quote: "The team made me feel completely comfortable. My implants look incredible and have changed my life.", tag: "Restorative", avatarSrc: "http://img.b2bpic.net/free-photo/front-view-woman-testing-colours_23-2150538710.jpg", imageSrc: "http://img.b2bpic.net/free-photo/dentist-cleaning-child-s-teeth_23-2149195890.jpg", imageAlt: "happy patient portrait"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "David Chen",
|
||||
date: "2023-11-02",
|
||||
title: "Smile Makeover",
|
||||
quote: "DentArt turned my confidence around! I couldn't be happier with my new smile.",
|
||||
tag: "Cosmetic",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-sitting-table_1262-5373.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-talking-with-female-patient-while-working-dental-jaw_23-2147862038.jpg?_wi=2",
|
||||
imageAlt: "happy patient portrait",
|
||||
},
|
||||
id: "t2", name: "David Chen", date: "2023-11-02", title: "Smile Makeover", quote: "DentArt turned my confidence around! I couldn't be happier with my new smile.", tag: "Cosmetic", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-sitting-table_1262-5373.jpg", imageSrc: "http://img.b2bpic.net/free-photo/dentist-talking-with-female-patient-while-working-dental-jaw_23-2147862038.jpg", imageAlt: "happy patient portrait"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Elena Rossi",
|
||||
date: "2024-01-12",
|
||||
title: "Routine Care",
|
||||
quote: "Best dental exam experience ever. Very thorough and kind staff.",
|
||||
tag: "General",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiley-doctor-posing-patient_23-2148757390.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-doctor-interrogating-woman-taking-notes-clipboard-standing-waiting-area-young-patient-explaining-dental-problem-stomatologist-speaking-crowded-reception-clinic_482257-3579.jpg?_wi=2",
|
||||
imageAlt: "happy patient portrait",
|
||||
},
|
||||
id: "t3", name: "Elena Rossi", date: "2024-01-12", title: "Routine Care", quote: "Best dental exam experience ever. Very thorough and kind staff.", tag: "General", avatarSrc: "http://img.b2bpic.net/free-photo/smiley-doctor-posing-patient_23-2148757390.jpg", imageSrc: "http://img.b2bpic.net/free-photo/dentist-doctor-interrogating-woman-taking-notes-clipboard-standing-waiting-area-young-patient-explaining-dental-problem-stomatologist-speaking-crowded-reception-clinic_482257-3579.jpg", imageAlt: "happy patient portrait"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "James Wilson",
|
||||
date: "2024-02-20",
|
||||
title: "Emergency Care",
|
||||
quote: "They took me in for an emergency same-day. Absolute lifesavers in South Loop.",
|
||||
tag: "Emergency",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-senior-man-his-living-room_329181-14654.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-doctor-checking-patient_23-2149726926.jpg",
|
||||
imageAlt: "happy patient portrait",
|
||||
},
|
||||
id: "t4", name: "James Wilson", date: "2024-02-20", title: "Emergency Care", quote: "They took me in for an emergency same-day. Absolute lifesavers in South Loop.", tag: "Emergency", avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-senior-man-his-living-room_329181-14654.jpg", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-doctor-checking-patient_23-2149726926.jpg", imageAlt: "happy patient portrait"},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Amanda Lee",
|
||||
date: "2024-03-05",
|
||||
title: "Invisalign",
|
||||
quote: "The entire process was smooth. Professional, efficient, and friendly.",
|
||||
tag: "Orthodontics",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2967.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beuatiful-female-dentist-posing-smiling-with-her-lovely-patient-laying-dental-chair-redviolet-dress_627829-9777.jpg?_wi=1",
|
||||
imageAlt: "happy patient portrait",
|
||||
},
|
||||
id: "t5", name: "Amanda Lee", date: "2024-03-05", title: "Invisalign", quote: "The entire process was smooth. Professional, efficient, and friendly.", tag: "Orthodontics", avatarSrc: "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2967.jpg", imageSrc: "http://img.b2bpic.net/free-photo/beuatiful-female-dentist-posing-smiling-with-her-lovely-patient-laying-dental-chair-redviolet-dress_627829-9777.jpg", imageAlt: "happy patient portrait"},
|
||||
]}
|
||||
title="Patient Success Stories"
|
||||
description="Hear what our community in the South Loop has to say about their experience with DentArt Chicago."
|
||||
@@ -226,28 +128,12 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "p1",
|
||||
badge: "Essential",
|
||||
price: "Standard Exam",
|
||||
subtitle: "Annual diagnostic foundation",
|
||||
features: [
|
||||
"Comprehensive exam",
|
||||
"Digital imaging",
|
||||
"Oral cancer screening",
|
||||
"Treatment plan",
|
||||
],
|
||||
id: "p1", badge: "Essential", price: "Standard Exam", subtitle: "Annual diagnostic foundation", features: [
|
||||
"Comprehensive exam", "Digital imaging", "Oral cancer screening", "Treatment plan"],
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
badge: "Popular",
|
||||
price: "Preventative Care",
|
||||
subtitle: "Maintenance for health",
|
||||
features: [
|
||||
"Professional cleaning",
|
||||
"Fluoride treatment",
|
||||
"Periodontal health check",
|
||||
"Personalized hygiene advice",
|
||||
],
|
||||
id: "p2", badge: "Popular", price: "Preventative Care", subtitle: "Maintenance for health", features: [
|
||||
"Professional cleaning", "Fluoride treatment", "Periodontal health check", "Personalized hygiene advice"],
|
||||
},
|
||||
]}
|
||||
title="Transparency in Care"
|
||||
@@ -262,26 +148,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "15+",
|
||||
title: "Years Serving Chicago",
|
||||
description: "Expert dental artistry since 2008",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2967.jpg",
|
||||
},
|
||||
id: "m1", value: "15+", title: "Years Serving Chicago", description: "Expert dental artistry since 2008", imageSrc: "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2967.jpg"},
|
||||
{
|
||||
id: "m2",
|
||||
value: "10k+",
|
||||
title: "Smiles Transformed",
|
||||
description: "Patients treated with care",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beuatiful-female-dentist-posing-smiling-with-her-lovely-patient-laying-dental-chair-redviolet-dress_627829-9777.jpg?_wi=2",
|
||||
},
|
||||
id: "m2", value: "10k+", title: "Smiles Transformed", description: "Patients treated with care", imageSrc: "http://img.b2bpic.net/free-photo/beuatiful-female-dentist-posing-smiling-with-her-lovely-patient-laying-dental-chair-redviolet-dress_627829-9777.jpg"},
|
||||
{
|
||||
id: "m3",
|
||||
value: "50+",
|
||||
title: "Service Types",
|
||||
description: "Comprehensive dental solutions",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1675.jpg",
|
||||
},
|
||||
id: "m3", value: "50+", title: "Service Types", description: "Comprehensive dental solutions", imageSrc: "http://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1675.jpg"},
|
||||
]}
|
||||
title="Clinical Success"
|
||||
description="Proven results for patients in Chicago."
|
||||
@@ -294,20 +165,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do you accept emergency visits?",
|
||||
content: "Yes, we prioritize same-day emergency surgical and dental care for our patients in the South Loop.",
|
||||
},
|
||||
id: "f1", title: "Do you accept emergency visits?", content: "Yes, we prioritize same-day emergency surgical and dental care for our patients in the South Loop."},
|
||||
{
|
||||
id: "f2",
|
||||
title: "What payment options are available?",
|
||||
content: "We offer flexible payment plans and work with major insurance providers. Please contact us for specific financial consultations.",
|
||||
},
|
||||
id: "f2", title: "What payment options are available?", content: "We offer flexible payment plans and work with major insurance providers. Please contact us for specific financial consultations."},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Is myofunctional therapy available?",
|
||||
content: "Yes, we specialize in comprehensive services, including myofunctional therapy and children's dentistry.",
|
||||
},
|
||||
id: "f3", title: "Is myofunctional therapy available?", content: "Yes, we specialize in comprehensive services, including myofunctional therapy and children's dentistry."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Common inquiries regarding your dental health and clinic visits."
|
||||
@@ -319,8 +181,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Contact Us"
|
||||
title="Book Your Appointment Today"
|
||||
description="Take the first step toward a healthier, more beautiful smile. Reach out to DentArt Chicago to schedule your consultation."
|
||||
@@ -332,54 +193,33 @@ export default function LandingPage() {
|
||||
logoText="DentArt Chicago"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Emergency Dentistry",
|
||||
href: "#",
|
||||
},
|
||||
label: "Emergency Dentistry", href: "#"},
|
||||
{
|
||||
label: "General Exams",
|
||||
href: "#",
|
||||
},
|
||||
label: "General Exams", href: "#"},
|
||||
{
|
||||
label: "Restorative",
|
||||
href: "#",
|
||||
},
|
||||
label: "Restorative", href: "#"},
|
||||
{
|
||||
label: "Cosmetic",
|
||||
href: "#",
|
||||
},
|
||||
label: "Cosmetic", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Clinic",
|
||||
items: [
|
||||
title: "Clinic", items: [
|
||||
{
|
||||
label: "South Loop Location",
|
||||
href: "#",
|
||||
},
|
||||
label: "South Loop Location", href: "#"},
|
||||
{
|
||||
label: "Patient Portal",
|
||||
href: "#",
|
||||
},
|
||||
label: "Patient Portal", href: "#"},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#",
|
||||
},
|
||||
label: "About Us", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Book Online",
|
||||
href: "#",
|
||||
},
|
||||
label: "Book Online", href: "#"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user