Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
288
src/app/page.tsx
288
src/app/page.tsx
@@ -33,38 +33,22 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#home",
|
||||
},
|
||||
name: "Home", id: "#home"},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About Us", id: "#about"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
name: "Services", id: "#services"},
|
||||
{
|
||||
name: "Our Team",
|
||||
id: "#team",
|
||||
},
|
||||
name: "Our Team", id: "#team"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "#faq",
|
||||
},
|
||||
name: "FAQ", id: "#faq"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
button={{
|
||||
text: "Book Appointment",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Book Appointment", href: "#contact"}}
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=999myi"
|
||||
logoAlt="Smile Craft Dental Clinic Logo"
|
||||
brandName="Smile Craft Dental Clinic"
|
||||
@@ -74,20 +58,15 @@ export default function LandingPage() {
|
||||
<div id="home" data-section="home">
|
||||
<HeroSplit
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
imagePosition="right"
|
||||
title="Your Brightest Smile Starts Here."
|
||||
description="At Smile Craft Dental Clinic, we combine advanced dental technology with compassionate care to provide you and your family with healthy, beautiful smiles. Experience personalized treatment in a comfortable environment."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book An Appointment",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Book An Appointment", href: "#contact"},
|
||||
{
|
||||
text: "Explore Our Services",
|
||||
href: "#services",
|
||||
},
|
||||
text: "Explore Our Services", href: "#services"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/specialist-patient-rehab_23-2148328379.jpg"
|
||||
imageAlt="Dentist comforting a smiling patient in a modern dental chair"
|
||||
@@ -95,52 +74,32 @@ export default function LandingPage() {
|
||||
fixedMediaHeight={true}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/headshot-pleased-attractive-blonde-female-with-positive-expression-broad-smile_273609-3695.jpg",
|
||||
alt: "Happy Patient 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/headshot-pleased-attractive-blonde-female-with-positive-expression-broad-smile_273609-3695.jpg", alt: "Happy Patient 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/adorable-young-lady-feeling-satisfied-happy_1163-3812.jpg",
|
||||
alt: "Happy Patient 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/adorable-young-lady-feeling-satisfied-happy_1163-3812.jpg", alt: "Happy Patient 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-happy-woman_1303-9728.jpg",
|
||||
alt: "Happy Patient 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-happy-woman_1303-9728.jpg", alt: "Happy Patient 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-woman-years-old-sitting-her-kitchen-alone-express-candid-happiness_1258-199764.jpg",
|
||||
alt: "Happy Patient 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-woman-years-old-sitting-her-kitchen-alone-express-candid-happiness_1258-199764.jpg", alt: "Happy Patient 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg",
|
||||
alt: "Happy Patient 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg", alt: "Happy Patient 5"},
|
||||
]}
|
||||
avatarText="Join our 5000+ happy patients!"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Advanced Technology",
|
||||
icon: Eye,
|
||||
type: "text-icon", text: "Advanced Technology", icon: Eye,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Compassionate Care",
|
||||
icon: Heart,
|
||||
type: "text-icon", text: "Compassionate Care", icon: Heart,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Experienced Specialists",
|
||||
icon: Award,
|
||||
type: "text-icon", text: "Experienced Specialists", icon: Award,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Family-Friendly Environment",
|
||||
icon: Users,
|
||||
type: "text-icon", text: "Family-Friendly Environment", icon: Users,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Personalized Treatment Plans",
|
||||
icon: Sparkles,
|
||||
type: "text-icon", text: "Personalized Treatment Plans", icon: Sparkles,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -151,28 +110,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "About ",
|
||||
},
|
||||
type: "text", content: "About "},
|
||||
{
|
||||
type: "image",
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=999myi",
|
||||
alt: "Smile Craft Logo",
|
||||
},
|
||||
type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=999myi", alt: "Smile Craft Logo"},
|
||||
{
|
||||
type: "text",
|
||||
content: " Dental Clinic",
|
||||
},
|
||||
type: "text", content: " Dental Clinic"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Meet Our Team",
|
||||
href: "#team",
|
||||
},
|
||||
text: "Meet Our Team", href: "#team"},
|
||||
]}
|
||||
description="Smile Craft Dental Clinic and Implant Center is dedicated to providing exceptional dental care in a warm and welcoming atmosphere. Our team of experienced dentists and specialists are committed to your oral health, offering a full range of services from routine check-ups to advanced implant procedures. We believe in building lasting relationships with our patients, ensuring every visit is comfortable and tailored to your needs."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-man-dentist-smiling-with-arms-crossed-dental-clinic_158595-7723.jpg"
|
||||
imageAlt="Female dentist smiling in a modern dental office"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -183,21 +130,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Emergency Dental Care",
|
||||
"Root Canal Therapy",
|
||||
"Periodontal Treatment",
|
||||
"Tooth Extractions",
|
||||
"Denture Repair",
|
||||
],
|
||||
"Emergency Dental Care", "Root Canal Therapy", "Periodontal Treatment", "Tooth Extractions", "Denture Repair"],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"General Dentistry",
|
||||
"Cosmetic Dentistry",
|
||||
"Dental Implants",
|
||||
"Orthodontics",
|
||||
"Pediatric Dentistry",
|
||||
],
|
||||
"General Dentistry", "Cosmetic Dentistry", "Dental Implants", "Orthodontics", "Pediatric Dentistry"],
|
||||
}}
|
||||
title="Comprehensive Dental Services"
|
||||
description="We offer a full spectrum of dental treatments to ensure your smile remains healthy and radiant for years to come."
|
||||
@@ -213,26 +150,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Dr. Sarah Chen",
|
||||
role: "Lead Dentist & Implant Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-patient-clinic_107420-73954.jpg",
|
||||
imageAlt: "Portrait of Dr. Sarah Chen",
|
||||
},
|
||||
id: "1", name: "Dr. Sarah Chen", role: "Lead Dentist & Implant Specialist", imageSrc: "http://img.b2bpic.net/free-photo/smiling-patient-clinic_107420-73954.jpg", imageAlt: "Portrait of Dr. Sarah Chen"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Dr. Mark Johnson",
|
||||
role: "General & Cosmetic Dentist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-nurse-with-stethoscope_23-2148740054.jpg",
|
||||
imageAlt: "Portrait of Dr. Mark Johnson",
|
||||
},
|
||||
id: "2", name: "Dr. Mark Johnson", role: "General & Cosmetic Dentist", imageSrc: "http://img.b2bpic.net/free-photo/smiley-nurse-with-stethoscope_23-2148740054.jpg", imageAlt: "Portrait of Dr. Mark Johnson"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily White",
|
||||
role: "Dental Hygienist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-doctor-clinic_23-2149103574.jpg",
|
||||
imageAlt: "Portrait of Emily White",
|
||||
},
|
||||
id: "3", name: "Emily White", role: "Dental Hygienist", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-doctor-clinic_23-2149103574.jpg", imageAlt: "Portrait of Emily White"},
|
||||
]}
|
||||
title="Meet Our Dedicated Team"
|
||||
description="Our team of skilled and compassionate professionals is committed to providing you with the highest standard of dental care. Get to know the friendly faces behind your beautiful smile."
|
||||
@@ -247,50 +169,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
handle: "@SarahJ_Smiles",
|
||||
testimonial: "The best dental experience I've ever had! The staff are incredibly friendly and Dr. Chen made me feel completely at ease. My new implants look and feel amazing!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cute-portrait-pretty-redhead-woman-with-amazing-long-hairs-fresh-natural-make-up-big-smile-eyes-pastel-soft-colors-tender-sensual-mood_291049-735.jpg",
|
||||
imageAlt: "Sarah J. smiling",
|
||||
},
|
||||
id: "1", name: "Sarah J.", handle: "@SarahJ_Smiles", testimonial: "The best dental experience I've ever had! The staff are incredibly friendly and Dr. Chen made me feel completely at ease. My new implants look and feel amazing!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cute-portrait-pretty-redhead-woman-with-amazing-long-hairs-fresh-natural-make-up-big-smile-eyes-pastel-soft-colors-tender-sensual-mood_291049-735.jpg", imageAlt: "Sarah J. smiling"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael L.",
|
||||
handle: "@MikeLovesDentist",
|
||||
testimonial: "I used to dread going to the dentist, but Smile Craft changed that. Pain-free procedures and top-notch professionalism. Highly recommend!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-clapping-hands-isolated-studio_1303-30130.jpg",
|
||||
imageAlt: "Michael L. smiling",
|
||||
},
|
||||
id: "2", name: "Michael L.", handle: "@MikeLovesDentist", testimonial: "I used to dread going to the dentist, but Smile Craft changed that. Pain-free procedures and top-notch professionalism. Highly recommend!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-clapping-hands-isolated-studio_1303-30130.jpg", imageAlt: "Michael L. smiling"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
handle: "@EmilyReads",
|
||||
testimonial: "From the moment I walked in, I felt cared for. The team is fantastic, and my cosmetic dentistry results exceeded all expectations. Thank you, Smile Craft!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/good-looking-retired-woman-spreads-palms-smiles-gently-smiles-positively-wears-transparent-glasses-sweater-has-bright-makeup-cares-about-appearance-old-age_273609-50112.jpg",
|
||||
imageAlt: "Emily R. smiling",
|
||||
},
|
||||
id: "3", name: "Emily R.", handle: "@EmilyReads", testimonial: "From the moment I walked in, I felt cared for. The team is fantastic, and my cosmetic dentistry results exceeded all expectations. Thank you, Smile Craft!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/good-looking-retired-woman-spreads-palms-smiles-gently-smiles-positively-wears-transparent-glasses-sweater-has-bright-makeup-cares-about-appearance-old-age_273609-50112.jpg", imageAlt: "Emily R. smiling"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David K.",
|
||||
handle: "@DKimHealthy",
|
||||
testimonial: "Finally found a dental clinic that prioritizes patient comfort and explains everything clearly. My family and I couldn't be happier with our care here.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-doctor-looking-patient_23-2148485988.jpg",
|
||||
imageAlt: "David K. smiling",
|
||||
},
|
||||
id: "4", name: "David K.", handle: "@DKimHealthy", testimonial: "Finally found a dental clinic that prioritizes patient comfort and explains everything clearly. My family and I couldn't be happier with our care here.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-doctor-looking-patient_23-2148485988.jpg", imageAlt: "David K. smiling"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Olivia P.",
|
||||
handle: "@OliviaWellness",
|
||||
testimonial: "Efficient, friendly, and exceptional care. My regular cleanings are always thorough, and they catch any potential issues early. Best dental care in the city!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-having-dental-treatment-dentist-s-office-woman-is-being-treated-teeth_1157-42150.jpg",
|
||||
imageAlt: "Olivia P. smiling",
|
||||
},
|
||||
id: "5", name: "Olivia P.", handle: "@OliviaWellness", testimonial: "Efficient, friendly, and exceptional care. My regular cleanings are always thorough, and they catch any potential issues early. Best dental care in the city!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-having-dental-treatment-dentist-s-office-woman-is-being-treated-teeth_1157-42150.jpg", imageAlt: "Olivia P. smiling"},
|
||||
]}
|
||||
showRating={true}
|
||||
title="What Our Patients Say"
|
||||
@@ -306,20 +198,11 @@ export default function LandingPage() {
|
||||
tag="By the Numbers"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "15+",
|
||||
description: "Years of Experience",
|
||||
},
|
||||
id: "1", value: "15+", description: "Years of Experience"},
|
||||
{
|
||||
id: "2",
|
||||
value: "5000+",
|
||||
description: "Happy Patients",
|
||||
},
|
||||
id: "2", value: "5000+", description: "Happy Patients"},
|
||||
{
|
||||
id: "3",
|
||||
value: "98%",
|
||||
description: "Successful Implant Rate",
|
||||
},
|
||||
id: "3", value: "98%", description: "Successful Implant Rate"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -331,30 +214,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What insurance plans do you accept?",
|
||||
content: "We accept most major dental insurance plans. Please contact our office with your insurance details, and our team will gladly verify your coverage.",
|
||||
},
|
||||
id: "1", title: "What insurance plans do you accept?", content: "We accept most major dental insurance plans. Please contact our office with your insurance details, and our team will gladly verify your coverage."},
|
||||
{
|
||||
id: "2",
|
||||
title: "How often should I have a dental check-up?",
|
||||
content: "We recommend a comprehensive dental check-up and cleaning every six months to maintain optimal oral health and prevent potential issues.",
|
||||
},
|
||||
id: "2", title: "How often should I have a dental check-up?", content: "We recommend a comprehensive dental check-up and cleaning every six months to maintain optimal oral health and prevent potential issues."},
|
||||
{
|
||||
id: "3",
|
||||
title: "Are dental implants a painful procedure?",
|
||||
content: "Dental implant procedures are performed under local anesthesia, ensuring you feel no pain during the process. Post-procedure discomfort is typically minimal and manageable with medication.",
|
||||
},
|
||||
id: "3", title: "Are dental implants a painful procedure?", content: "Dental implant procedures are performed under local anesthesia, ensuring you feel no pain during the process. Post-procedure discomfort is typically minimal and manageable with medication."},
|
||||
{
|
||||
id: "4",
|
||||
title: "Do you offer cosmetic dentistry services?",
|
||||
content: "Yes, we offer a range of cosmetic dentistry services including teeth whitening, veneers, bonding, and smile makeovers to help you achieve your desired aesthetic.",
|
||||
},
|
||||
id: "4", title: "Do you offer cosmetic dentistry services?", content: "Yes, we offer a range of cosmetic dentistry services including teeth whitening, veneers, bonding, and smile makeovers to help you achieve your desired aesthetic."},
|
||||
{
|
||||
id: "5",
|
||||
title: "What are your clinic hours?",
|
||||
content: "Our clinic is open Monday to Friday from 9:00 AM to 6:00 PM, and Saturdays from 9:00 AM to 1:00 PM. We are closed on Sundays.",
|
||||
},
|
||||
id: "5", title: "What are your clinic hours?", content: "Our clinic is open Monday to Friday from 9:00 AM to 6:00 PM, and Saturdays from 9:00 AM to 1:00 PM. We are closed on Sundays."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about our clinic, services, appointments, and payment options."
|
||||
@@ -367,8 +235,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Get in Touch"
|
||||
title="Schedule Your Visit Today"
|
||||
description="Ready for a healthier, brighter smile? Contact Smile Craft Dental Clinic to book your appointment or to learn more about our services. We look forward to welcoming you!"
|
||||
@@ -385,66 +252,39 @@ export default function LandingPage() {
|
||||
logoText="Smile Craft Dental Clinic"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "General Dentistry",
|
||||
href: "#services",
|
||||
},
|
||||
label: "General Dentistry", href: "#services"},
|
||||
{
|
||||
label: "Cosmetic Dentistry",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Cosmetic Dentistry", href: "#services"},
|
||||
{
|
||||
label: "Dental Implants",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Dental Implants", href: "#services"},
|
||||
{
|
||||
label: "Orthodontics",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Orthodontics", href: "#services"},
|
||||
{
|
||||
label: "Emergency Care",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Emergency Care", href: "#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "About Us",
|
||||
items: [
|
||||
title: "About Us", items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "#about",
|
||||
},
|
||||
label: "Our Story", href: "#about"},
|
||||
{
|
||||
label: "Our Team",
|
||||
href: "#team",
|
||||
},
|
||||
label: "Our Team", href: "#team"},
|
||||
{
|
||||
label: "Testimonials",
|
||||
href: "#testimonials",
|
||||
},
|
||||
label: "Testimonials", href: "#testimonials"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
label: "FAQ", href: "#faq"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Book Now",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Book Now", href: "#contact"},
|
||||
{
|
||||
label: "Location",
|
||||
href: "#",
|
||||
},
|
||||
label: "Location", href: "#"},
|
||||
{
|
||||
label: "Call Us",
|
||||
href: "tel:123-456-7890",
|
||||
},
|
||||
label: "Call Us", href: "tel:123-456-7890"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user