13 Commits

Author SHA1 Message Date
84695c9a71 Update src/app/services/page.tsx 2026-03-29 21:50:19 +00:00
78e2ebec06 Update src/app/services/page.tsx 2026-03-29 21:49:51 +00:00
af3caa9c26 Update src/app/services/page.tsx 2026-03-29 21:49:24 +00:00
7aaa80839a Update src/app/services/page.tsx 2026-03-29 21:48:57 +00:00
5e4f6ca7be Update src/app/reviews/page.tsx 2026-03-29 21:48:57 +00:00
a9ccc8dbdf Update src/app/contact/page.tsx 2026-03-29 21:48:57 +00:00
a2324b18c0 Update src/app/about/page.tsx 2026-03-29 21:48:56 +00:00
9d0c937556 Update src/app/services/page.tsx 2026-03-29 21:48:23 +00:00
7d6f5bc9a5 Update src/app/reviews/page.tsx 2026-03-29 21:48:23 +00:00
75e43b1813 Update src/app/page.tsx 2026-03-29 21:48:23 +00:00
935f58a61a Update src/app/contact/page.tsx 2026-03-29 21:48:22 +00:00
15e3201c4a Update src/app/about/page.tsx 2026-03-29 21:48:22 +00:00
b33b99c0b3 Merge version_1 into main
Merge version_1 into main
2026-03-29 21:44:48 +00:00
5 changed files with 179 additions and 612 deletions

View File

@@ -2,120 +2,42 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TeamCardTen from '@/components/sections/team/TeamCardTen'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function LandingPage() { export default function AboutPage() {
return ( return (
<ThemeProvider <ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
defaultButtonVariant="elastic-effect"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="compact"
sizing="large"
background="grid"
cardStyle="soft-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "About", id: "/about" },
id: "/", { name: "Services", id: "/services" },
}, { name: "Reviews", id: "/reviews" },
{ { name: "Contact", id: "/contact" },
name: "About", ]}
id: "/about", brandName="One Smile"
}, />
{ </div>
name: "Services", <MetricSplitMediaAbout
id: "/services", title="Our Story & Mission"
}, description="Founded with a vision to revolutionize dental care in Tashkent, One Smile combines international standards with local hospitality. Our mission is to make quality dental care accessible, comfortable, and personalized for every patient."
{ metrics={[
name: "Reviews", { value: "15+", title: "Years Experience" },
id: "/reviews", { value: "5000+", title: "Procedures" }
}, ]}
{ useInvertedBackground={false}
name: "Contact", imageSrc="http://img.b2bpic.net/free-photo/doctor-with-patient-dental-clinic_482257-126970.jpg?_wi=1"
id: "/contact", />
}, <FooterLogoEmphasis
]} columns={[
brandName="One Smile" { items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] }
/> ]}
</div> logoText="One Smile"
/>
<div id="about-section" data-section="about-section">
<MediaAbout
useInvertedBackground={false}
title="Dr. Ravshan & Team"
description="At One Smile Tashkent, we prioritize professionalism. Dr. Ravshan and our dedicated team offer comprehensive dental care with fluent English-speaking capabilities for your peace of mind."
imageSrc="http://img.b2bpic.net/free-photo/female-doctor-clinic-evaluates-man-cognitive-function-reflex_482257-126970.jpg?_wi=3"
/>
</div>
<div id="team" data-section="team">
<TeamCardTen
useInvertedBackground={false}
title="Our Medical Staff"
tag="The Team"
memberVariant="card"
membersAnimation="slide-up"
members={[
{
id: "1",
name: "Dr. Ravshan",
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-clinic-evaluates-man-cognitive-function-reflex_482257-126970.jpg?_wi=4",
},
{
id: "2",
name: "Assistance Team",
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-clinic-evaluates-man-cognitive-function-reflex_482257-126970.jpg?_wi=5",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Reviews",
href: "/reviews",
},
],
},
{
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "Phone: +998 33 479 06 66",
href: "tel:+998334790666",
},
],
},
]}
logoText="One Smile"
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );

View File

@@ -3,135 +3,48 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function LandingPage() { export default function ContactPage() {
return ( return (
<ThemeProvider <ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
defaultButtonVariant="elastic-effect"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="compact"
sizing="large"
background="grid"
cardStyle="soft-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "About", id: "/about" },
id: "/", { name: "Services", id: "/services" },
}, { name: "Reviews", id: "/reviews" },
{ { name: "Contact", id: "/contact" },
name: "About", ]}
id: "/about", brandName="One Smile"
}, />
{ </div>
name: "Services", <div className="pt-32 pb-20 px-6">
id: "/services", <div className="max-w-2xl mx-auto mb-16 p-8 bg-card rounded-xl shadow-lg">
}, <h2 className="text-2xl font-bold mb-6">Our Clinic in Tashkent</h2>
{ <p className="mb-2"><strong>Address:</strong> Parkent ko'chasi, Tashkent, Uzbekistan</p>
name: "Reviews", <p className="mb-2"><strong>Phone:</strong> +998 33 479 06 66</p>
id: "/reviews", <p className="mb-4"><strong>Hours:</strong> Mon-Fri: 9:00 AM - 7:00 PM, Sat: 10:00 AM - 3:00 PM</p>
}, </div>
{ <ContactCTA
name: "Contact", tag="Contact Us"
id: "/contact", title="Book Your Appointment"
}, description="We look forward to providing you with the best dental care in Tashkent."
]} buttons={[{ text: "Call Now", href: "tel:+998334790666" }]}
brandName="One Smile" background={{ variant: "plain" }}
/> useInvertedBackground={false}
</div> />
</div>
<div id="contact-section" data-section="contact-section"> <FooterLogoEmphasis
<ContactSplitForm columns={[
useInvertedBackground={false} { items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Reviews", href: "/reviews" }] },
title="Contact One Smile" { items: [{ label: "Phone: +998 33 479 06 66", href: "tel:+998334790666" }] }
description="887J+J4J, Parkent ko'chasi, Tashkent. Opens at 09:00." ]}
inputs={[ logoText="One Smile"
{ />
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email",
required: true,
},
]}
textarea={{
name: "message",
placeholder: "Your Message",
}}
imageSrc="http://img.b2bpic.net/free-vector/design-interface-taxi-app_23-2148497512.jpg"
mediaPosition="right"
mediaAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Location"
title="Find us in Tashkent"
description="We are open daily from 9 AM to 6 PM."
buttons={[
{
text: "Get Directions",
href: "#",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Reviews",
href: "/reviews",
},
],
},
{
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "Phone: +998 33 479 06 66",
href: "tel:+998334790666",
},
],
},
]}
logoText="One Smile"
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );

View File

@@ -28,26 +28,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "About", id: "/about" },
id: "/", { name: "Services", id: "/services" },
}, { name: "Reviews", id: "/reviews" },
{ { name: "Contact", id: "/contact" },
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "Contact",
id: "/contact",
},
]} ]}
brandName="One Smile" brandName="One Smile"
/> />
@@ -56,15 +41,12 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroLogoBillboard
background={{ background={{
variant: "gradient-bars", variant: "gradient-bars"}}
}}
logoText="One Smile" logoText="One Smile"
description="Premium dental care in Tashkent. Professional, English-speaking, and dedicated to your healthy smile." description="Premium dental care in Tashkent. Professional, English-speaking, and dedicated to your healthy smile."
buttons={[ buttons={[
{ {
text: "Book Appointment", text: "Book Appointment", href: "/contact"},
href: "/contact",
},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/shopping-mall_74190-5525.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/shopping-mall_74190-5525.jpg?_wi=1"
imageAlt="One Smile Dental Clinic" imageAlt="One Smile Dental Clinic"
@@ -81,33 +63,13 @@ export default function LandingPage() {
description="Numbers that reflect our dedication." description="Numbers that reflect our dedication."
metrics={[ metrics={[
{ {
id: "1", id: "1", title: "Patients Treated", subtitle: "Annual count", category: "Success", value: "2000+"},
title: "Patients Treated",
subtitle: "Annual count",
category: "Success",
value: "2000+",
},
{ {
id: "2", id: "2", title: "Years Experience", subtitle: "Dr. Ravshan", category: "Expertise", value: "15"},
title: "Years Experience",
subtitle: "Dr. Ravshan",
category: "Expertise",
value: "15",
},
{ {
id: "3", id: "3", title: "5-Star Reviews", subtitle: "Verified Patients", category: "Trust", value: "450+"},
title: "5-Star Reviews",
subtitle: "Verified Patients",
category: "Trust",
value: "450+",
},
{ {
id: "4", id: "4", title: "Procedures", subtitle: "Completed", category: "Work", value: "5000+"},
title: "Procedures",
subtitle: "Completed",
category: "Work",
value: "5000+",
},
]} ]}
/> />
</div> </div>
@@ -121,15 +83,9 @@ export default function LandingPage() {
faqsAnimation="slide-up" faqsAnimation="slide-up"
faqs={[ faqs={[
{ {
id: "q1", id: "q1", title: "Do you speak English?", content: "Yes, our team is fully fluent in English to serve international patients."},
title: "Do you speak English?",
content: "Yes, our team is fully fluent in English to serve international patients.",
},
{ {
id: "q2", id: "q2", title: "Where is the clinic?", content: "Located at Parkent ko'chasi, central Tashkent."},
title: "Where is the clinic?",
content: "Located at Parkent ko'chasi, central Tashkent.",
},
]} ]}
/> />
</div> </div>
@@ -138,16 +94,13 @@ export default function LandingPage() {
<ContactCTA <ContactCTA
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "plain", variant: "plain"}}
}}
tag="Ready to book?" tag="Ready to book?"
title="Take the first step to your perfect smile" title="Take the first step to your perfect smile"
description="Schedule a consultation with Dr. Ravshan today." description="Schedule a consultation with Dr. Ravshan today."
buttons={[ buttons={[
{ {
text: "Call Now", text: "Call Now", href: "tel:+998334790666"},
href: "tel:+998334790666",
},
]} ]}
/> />
</div> </div>
@@ -161,15 +114,9 @@ export default function LandingPage() {
membersAnimation="slide-up" membersAnimation="slide-up"
members={[ members={[
{ {
id: "m1", id: "m1", name: "Dr. Ravshan", imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-clinic-evaluates-man-cognitive-function-reflex_482257-126970.jpg?_wi=1"},
name: "Dr. Ravshan",
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-clinic-evaluates-man-cognitive-function-reflex_482257-126970.jpg?_wi=1",
},
{ {
id: "m2", id: "m2", name: "Dr. Aziza", imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-clinic-evaluates-man-cognitive-function-reflex_482257-126970.jpg?_wi=2"},
name: "Dr. Aziza",
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-clinic-evaluates-man-cognitive-function-reflex_482257-126970.jpg?_wi=2",
},
]} ]}
/> />
</div> </div>
@@ -180,29 +127,19 @@ export default function LandingPage() {
{ {
items: [ items: [
{ {
label: "About Us", label: "About Us", href: "/about"},
href: "/about",
},
{ {
label: "Services", label: "Services", href: "/services"},
href: "/services",
},
{ {
label: "Reviews", label: "Reviews", href: "/reviews"},
href: "/reviews",
},
], ],
}, },
{ {
items: [ items: [
{ {
label: "Contact", label: "Contact", href: "/contact"},
href: "/contact",
},
{ {
label: "Phone: +998 33 479 06 66", label: "Phone: +998 33 479 06 66", href: "tel:+998334790666"},
href: "tel:+998334790666",
},
], ],
}, },
]} ]}

View File

@@ -2,151 +2,56 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function LandingPage() { export default function ReviewsPage() {
return ( return (
<ThemeProvider <ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
defaultButtonVariant="elastic-effect"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="compact"
sizing="large"
background="grid"
cardStyle="soft-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "About", id: "/about" },
id: "/", { name: "Services", id: "/services" },
}, { name: "Reviews", id: "/reviews" },
{ { name: "Contact", id: "/contact" },
name: "About", ]}
id: "/about", brandName="One Smile"
}, />
{ </div>
name: "Services", <div className="pt-32 pb-20 px-6">
id: "/services", <h1 className="text-4xl font-bold mb-12 text-center">Patient Reviews</h1>
}, <div className="grid gap-8 max-w-4xl mx-auto">
{ <TestimonialCardFifteen
name: "Reviews", testimonial="Dr. Ravshan is professional and fluent in English. Highly recommend for any dental work in Tashkent!"
id: "/reviews", rating={5}
}, author="Alex R."
{ avatars={[]}
name: "Contact", ratingAnimation="blur-reveal"
id: "/contact", avatarsAnimation="blur-reveal"
}, useInvertedBackground={false}
]} />
brandName="One Smile" <TestimonialCardFifteen
/> testimonial="Great clinic, very modern and clean. The staff made me feel very comfortable."
</div> rating={5}
author="Sarah M."
<div id="reviews-section" data-section="reviews-section"> avatars={[]}
<TestimonialCardFifteen ratingAnimation="blur-reveal"
useInvertedBackground={false} avatarsAnimation="blur-reveal"
testimonial="Amazing clinic! Dr. Ravshan is very professional and speaks excellent English. My whitening procedure was painless and effective." useInvertedBackground={false}
rating={5} />
author="Asal Rahmonova" </div>
avatars={[ </div>
{ <FooterLogoEmphasis
src: "http://img.b2bpic.net/free-photo/shopping-mall_74190-5525.jpg", columns={[
alt: "Asal Rahmonova", { items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
}, { items: [{ label: "Phone: +998 33 479 06 66", href: "tel:+998334790666" }] }
{ ]}
src: "http://img.b2bpic.net/free-photo/female-doctor-clinic-evaluates-man-cognitive-function-reflex_482257-126970.jpg", logoText="One Smile"
alt: "Subhon Bakirov", />
},
{
src: "http://img.b2bpic.net/free-photo/shopping-mall_74190-5525.jpg",
alt: "Jack Jones",
},
{
src: "http://img.b2bpic.net/free-photo/female-doctor-clinic-evaluates-man-cognitive-function-reflex_482257-126970.jpg",
alt: "Patient",
},
{
src: "http://img.b2bpic.net/free-photo/shopping-mall_74190-5525.jpg",
alt: "Maria Ivanov",
},
]}
ratingAnimation="slide-up"
avatarsAnimation="blur-reveal"
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Patient Stories"
description="Hear from our happy clients."
testimonials={[
{
id: "t1",
name: "John Doe",
role: "Patient",
company: "One Smile",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/shopping-mall_74190-5525.jpg?_wi=4",
},
{
id: "t2",
name: "Jane Smith",
role: "Patient",
company: "One Smile",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/shopping-mall_74190-5525.jpg?_wi=5",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Reviews",
href: "/reviews",
},
],
},
{
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "Phone: +998 33 479 06 66",
href: "tel:+998334790666",
},
],
},
]}
logoText="One Smile"
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );

View File

@@ -2,156 +2,46 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { CheckCircle } from "lucide-react";
export default function LandingPage() { export default function ServicesPage() {
return ( return (
<ThemeProvider <ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
defaultButtonVariant="elastic-effect"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="compact"
sizing="large"
background="grid"
cardStyle="soft-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "About", id: "/about" },
id: "/", { name: "Services", id: "/services" },
}, { name: "Reviews", id: "/reviews" },
{ { name: "Contact", id: "/contact" },
name: "About", ]}
id: "/about", brandName="One Smile"
}, />
{ </div>
name: "Services", <FeatureBorderGlow
id: "/services", title="Our Dental Services"
}, description="Comprehensive care for the whole family."
{ animationType="slide-up"
name: "Reviews", textboxLayout="default"
id: "/reviews", useInvertedBackground={false}
}, features={[
{ { icon: CheckCircle, title: "Dental Cleanings", description: "Routine professional cleanings for optimal oral hygiene." },
name: "Contact", { icon: CheckCircle, title: "Teeth Whitening", description: "Brighten your smile with our professional whitening solutions." },
id: "/contact", { icon: CheckCircle, title: "Dental Implants", description: "Permanent, natural-looking tooth replacement." },
}, { icon: CheckCircle, title: "Orthodontics", description: "Correct alignment with braces or clear aligners." }
]} ]}
brandName="One Smile" />
/> <FooterLogoEmphasis
</div> columns={[
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }
<div id="services-section" data-section="services-section"> ]}
<FeatureCardEight logoText="One Smile"
textboxLayout="split" />
useInvertedBackground={false}
features={[
{
id: 1,
title: "Check-up",
description: "Routine dental examinations for adults and children.",
imageSrc: "http://img.b2bpic.net/free-photo/shopping-mall_74190-5525.jpg?_wi=2",
},
{
id: 2,
title: "Teeth Whitening",
description: "Professional procedures for a brighter, confident smile.",
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-clinic-evaluates-man-cognitive-function-reflex_482257-126970.jpg?_wi=6",
},
{
id: 3,
title: "Braces",
description: "Advanced orthodontic solutions for alignment.",
imageSrc: "http://img.b2bpic.net/free-photo/shopping-mall_74190-5525.jpg?_wi=3",
},
{
id: 4,
title: "Implants",
description: "Durable and aesthetic dental implant treatments.",
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-clinic-evaluates-man-cognitive-function-reflex_482257-126970.jpg?_wi=7",
},
]}
title="Our Services"
description="High-quality treatments for a healthier smile."
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Treatment Plans"
description="Transparent pricing for dental care."
plans={[
{
id: "p1",
badge: "Popular",
price: "From $50",
subtitle: "Basic cleaning",
features: [
"Cleaning",
"Exam",
],
},
{
id: "p2",
badge: "Full Care",
price: "From $300",
subtitle: "Full whitening",
features: [
"Whitening",
"Checkup",
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Reviews",
href: "/reviews",
},
],
},
{
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "Phone: +998 33 479 06 66",
href: "tel:+998334790666",
},
],
},
]}
logoText="One Smile"
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );