Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 54e09f369b | |||
| 9633da4671 | |||
| b3a30e3768 | |||
| 9726d2ced7 | |||
| b4bda72ae5 | |||
| 04a3cb664d | |||
| 47c19cc2b5 | |||
| 3e5109c427 | |||
| 21111621c2 |
1424
src/app/layout.tsx
1424
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
216
src/app/page.tsx
216
src/app/page.tsx
@@ -1,216 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { Smile, Sparkles, MessageSquare } from "lucide-react";
|
||||
|
||||
export default function DentistZoneLanding() {
|
||||
export default function Home() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Dentist.zone"
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Book Appointment", href: "#contact"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
title="Your Smile, Our Priority"
|
||||
description="Experience world-class dental care with cutting-edge technology and a compassionate team dedicated to your oral health and wellbeing."
|
||||
tag="Trusted Dental Excellence"
|
||||
tagIcon={Smile}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
kpis={[
|
||||
{ value: "15+", label: "Years Experience" },
|
||||
{ value: "5000+", label: "Happy Patients" },
|
||||
{ value: "99%", label: "Satisfaction Rate" }
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{ text: "Schedule Visit", href: "#contact" },
|
||||
{ text: "Learn More", href: "#services" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/back-view-woman-filling-dental-document-sitting-chiar-waiting-room-preparing-teeth-exemination-while-doctor-working-background-concept-crowded-professional-orthodontist-office_482257-3585.jpg"
|
||||
imageAlt="Modern dental office reception area"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardOne
|
||||
title="Comprehensive Dental Services"
|
||||
description="From routine cleanings to advanced cosmetic procedures, we offer the full spectrum of dental care to keep your smile healthy and radiant."
|
||||
tag="Our Services"
|
||||
tagIcon={Sparkles}
|
||||
textboxLayout="default"
|
||||
features={[
|
||||
{
|
||||
title: "Preventive Dentistry", description: "Regular cleanings, exams, and screenings to maintain optimal oral health and prevent dental issues.", imageSrc: "http://img.b2bpic.net/free-photo/instrument-cosmetic-specialist-surgeon-work_1303-509.jpg", imageAlt: "Professional dental cleaning equipment"
|
||||
},
|
||||
{
|
||||
title: "Cosmetic Dentistry", description: "Professional teeth whitening, veneers, and smile makeovers to enhance your natural beauty.", imageSrc: "http://img.b2bpic.net/free-photo/female-dentist-treating-her-patient-teeth_8353-1661.jpg", imageAlt: "Cosmetic dentistry treatment"
|
||||
},
|
||||
{
|
||||
title: "Restorative Treatment", description: "Fillings, crowns, and implants to restore damaged teeth and maintain your smile's function.", imageSrc: "http://img.b2bpic.net/free-photo/young-female-dentist-treating-teeth-girl-dental-office-dentistry-concept_169016-66731.jpg", imageAlt: "Dental restoration procedure"
|
||||
},
|
||||
{
|
||||
title: "Orthodontics", description: "Modern braces and aligners to straighten your teeth and improve your bite alignment.", imageSrc: "http://img.b2bpic.net/free-photo/female-dentist-showing-teeth-model-female-patient-dental-clinic_23-2147879151.jpg", imageAlt: "Orthodontic treatment"
|
||||
}
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{ type: "text", content: "Dedicated to Excellence in" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-vector/dental_24908-54022.jpg", alt: "Dentist.zone logo" },
|
||||
{ type: "text", content: "Patient Care" }
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Meet Our Team", href: "#contact" }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardTwo
|
||||
title="Advanced Treatment Options"
|
||||
description="State-of-the-art dental solutions designed for your comfort and results."
|
||||
tag="Premium Treatments"
|
||||
textboxLayout="default"
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Digital", name: "Intra-Oral Imaging", price: "Advanced Diagnostics", rating: 5,
|
||||
reviewCount: "450+", imageSrc: "http://img.b2bpic.net/free-photo/woman-analyzing-green-screen-monitor-teeth-x-ray-dental-examination-dentist-using-chroma-key-mockup-display-checkup-while-looking-radiography-oral-care_482257-28163.jpg", imageAlt: "Digital dental imaging"
|
||||
},
|
||||
{
|
||||
id: "2", brand: "Comfort", name: "Sedation Dentistry", price: "Anxiety-Free Care", rating: 5,
|
||||
reviewCount: "380+", imageSrc: "http://img.b2bpic.net/free-photo/young-happy-woman-bathrobe-using-smart-phone-while-relaxing-by-pool-wellness-center_637285-7416.jpg", imageAlt: "Comfortable patient care"
|
||||
},
|
||||
{
|
||||
id: "3", brand: "Modern", name: "Laser Treatment", price: "Precision Procedures", rating: 5,
|
||||
reviewCount: "420+", imageSrc: "http://img.b2bpic.net/free-photo/team-dentists-treats-patients-teeth-using-modern-equipment-dentistry-concept_169016-67261.jpg", imageAlt: "Laser dental treatment"
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
title="What Our Patients Say"
|
||||
description="Real stories from people who've experienced exceptional dental care at Dentist.zone."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Mitchell", handle: "Patient since 2018", testimonial: "Dr. Johnson and the team made my root canal procedure painless and comfortable. Their professionalism and care are unmatched. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman_23-2147615403.jpg?_wi=1", imageAlt: "Sarah Mitchell"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael Chen", handle: "Patient since 2019", testimonial: "My teeth have never looked better thanks to their cosmetic dentistry services. The results exceeded my expectations and the staff is wonderful.", imageSrc: "http://img.b2bpic.net/free-photo/funny-african-man-with-bushy-curly-hair-blinking-his-eye-having-warm-broad-smile_273609-14063.jpg", imageAlt: "Michael Chen"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Emily Rodriguez", handle: "Patient since 2020", testimonial: "As someone with dental anxiety, I was nervous about my visit. The team's compassion and use of sedation made it a breeze. Thank you!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman_23-2147615403.jpg?_wi=2", imageAlt: "Emily Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "4", name: "David Thompson", handle: "Patient since 2017", testimonial: "The office is state-of-the-art and the team is incredibly knowledgeable. I've been a patient for years and wouldn't go anywhere else.", imageSrc: "http://img.b2bpic.net/free-photo/man-smiling-with-hands-hips-gray-background_1187-3016.jpg", imageAlt: "David Thompson"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Jessica Williams", handle: "Patient since 2021", testimonial: "My daughter's orthodontic journey has been wonderful. The progress is excellent and the team keeps her motivated. Best decision we made!", imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-young-woman-standing-posing-co-working-coffee-shop-interior-looking-camera-smiling_74855-9955.jpg", imageAlt: "Jessica Williams"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Robert Lee", handle: "Patient since 2016", testimonial: "Regular cleanings and preventive care have kept my teeth healthy. The attention to detail and friendly atmosphere make every visit pleasant.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-mature-businessman-looking-away_23-2147955371.jpg", imageAlt: "Robert Lee"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Get In Touch"
|
||||
tagIcon={MessageSquare}
|
||||
title="Schedule Your Appointment Today"
|
||||
description="Book your next dental visit with our convenient online scheduling system. We look forward to seeing you and keeping your smile healthy."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-diverse-latin-people_23-2151057834.jpg"
|
||||
imageAlt="Professional dental team ready to help"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Schedule Now"
|
||||
termsText="We respect your privacy. We'll only contact you about your appointment."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
logoText="Dentist.zone"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Preventive Dentistry", href: "#services" },
|
||||
{ label: "Cosmetic Dentistry", href: "#services" },
|
||||
{ label: "Restorative Treatment", href: "#services" },
|
||||
{ label: "Orthodontics", href: "#services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Blog", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Cookie Policy", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Dentist.zone | Excellence in Dental Care"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
<main>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user