13 Commits

Author SHA1 Message Date
520be886a2 Update src/app/page.tsx 2026-06-04 06:00:17 +00:00
7687ff7ece Update src/app/page.tsx 2026-06-04 04:34:33 +00:00
397fabbdb1 Update theme fonts 2026-06-04 04:24:05 +00:00
a1a2eec317 Update theme fonts 2026-06-04 04:24:05 +00:00
3e4ac457d0 Update theme fonts 2026-06-04 04:23:54 +00:00
d0f5959726 Update theme fonts 2026-06-04 04:23:54 +00:00
59d0adbf88 Update theme colors 2026-06-04 04:23:40 +00:00
3881888b21 Update theme colors 2026-06-04 04:23:31 +00:00
b650fada9c Update theme colors 2026-06-04 04:23:25 +00:00
2aa87de1d8 Update theme colors 2026-06-04 04:23:22 +00:00
1ae240bc60 Update src/app/page.tsx 2026-06-04 04:23:06 +00:00
10b7d75381 Update src/app/page.tsx 2026-06-04 04:06:35 +00:00
155c561996 Update src/app/page.tsx 2026-06-04 04:04:13 +00:00
4 changed files with 44 additions and 101 deletions

View File

@@ -6,23 +6,26 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
import { Open_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: 'Elite Dental Care | Luxury Dentistry', title: 'Elite Dental Care | Luxury Dentistry',
description: 'Experience unparalleled luxury and precision dentistry. Our elite practice offers bespoke treatments in a serene, sophisticated environment for discerning patients.', description: 'Experience unparalleled luxury and precision dentistry. Our elite practice offers bespoke treatments in a serene, sophisticated environment for discerning patients.',
}; };
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: Readonly<{
@@ -31,9 +34,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body className={`${inter.variable} ${openSans.variable} antialiased`}>
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -27,7 +27,7 @@ export default function LuxuryDentistPage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
brandName="Luxury Dental Care" brandName="Empire Dental care"
navItems={[ navItems={[
{ name: "Home", id: "hero" }, { name: "Home", id: "hero" },
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
@@ -35,15 +35,14 @@ export default function LuxuryDentistPage() {
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
text: "Schedule Consultation", text: "Schedule Consultation", href: "#contact"
href: "#contact"
}} }}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitKpi <HeroSplitKpi
title="California's Premier Luxury Dental Practice" title="Empire Dental Care"
description="Experience world-class cosmetic and restorative dentistry with cutting-edge technology. Our award-winning dentists are committed to creating stunning smiles with personalized care and exceptional attention to detail." description="Experience world-class cosmetic and restorative dentistry with cutting-edge technology. Our award-winning dentists are committed to creating stunning smiles with personalized care and exceptional attention to detail."
tag="Excellence Since 2005" tag="Excellence Since 2005"
tagIcon={Sparkles} tagIcon={Sparkles}
@@ -77,34 +76,16 @@ export default function LuxuryDentistPage() {
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
{ {
id: "1", id: "1", brand: "Cosmetic", name: "Smile Design & Whitening", price: "From ₹4,160", rating: 5,
brand: "Cosmetic", reviewCount: "234", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service1.avif", imageAlt: "Cosmetic smile design consultation"
name: "Smile Design & Whitening",
price: "From $500",
rating: 5,
reviewCount: "234",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service1.avif",
imageAlt: "Cosmetic smile design consultation"
}, },
{ {
id: "2", id: "2", brand: "Restorative", name: "Dental Implants & Crowns", price: "From ₹9984", rating: 5,
brand: "Restorative", reviewCount: "312", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service2.avif", imageAlt: "Advanced dental implant technology"
name: "Dental Implants & Crowns",
price: "From $1,200",
rating: 5,
reviewCount: "312",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service2.avif",
imageAlt: "Advanced dental implant technology"
}, },
{ {
id: "3", id: "3", brand: "Advanced", name: "Orthodontics & Aligners", price: "From ₹6,560", rating: 5,
brand: "Advanced", reviewCount: "289", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service3.avif", imageAlt: "Clear aligner orthodontic treatment"
name: "Orthodontics & Aligners",
price: "From $800",
rating: 5,
reviewCount: "289",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/services/service3.avif",
imageAlt: "Clear aligner orthodontic treatment"
} }
]} ]}
buttons={[ buttons={[
@@ -116,7 +97,7 @@ export default function LuxuryDentistPage() {
<div id="about" data-section="about"> <div id="about" data-section="about">
<InlineImageSplitTextAbout <InlineImageSplitTextAbout
heading={[ heading={[
{ type: "text", content: "Trusted Excellence in Dental Care Across California" } { type: "text", content: "Trusted Excellence in Dental Care Across Kochi" }
]} ]}
useInvertedBackground={false} useInvertedBackground={false}
buttons={[ buttons={[
@@ -138,15 +119,9 @@ export default function LuxuryDentistPage() {
useInvertedBackground={true} useInvertedBackground={true}
features={[ features={[
{ {
title: "Digital Technology", title: "Digital Technology", description: "3D imaging, intraoral cameras, and computer-aided design for precise diagnostics and treatment planning", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/about/about1.avif"},
description: "3D imaging, intraoral cameras, and computer-aided design for precise diagnostics and treatment planning",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/about/about1.avif",
},
{ {
title: "Master Craftsmanship", title: "Master Craftsmanship", description: "Award-winning dentists with decades of experience in cosmetic and restorative excellence", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/about/about2.avif"}
description: "Award-winning dentists with decades of experience in cosmetic and restorative excellence",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/dentist/about/about2.avif",
}
]} ]}
/> />
</div> </div>
@@ -161,52 +136,22 @@ export default function LuxuryDentistPage() {
animationType="slide-up" animationType="slide-up"
testimonials={[ testimonials={[
{ {
id: "1", id: "1", name: "Jennifer Martinez", handle: "San Diego Patient", testimonial: "The most professional and caring dental experience I've ever had. The results exceeded my expectations and the attention to detail is extraordinary.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial1.webp", imageAlt: "Jennifer Martinez"
name: "Jennifer Martinez",
handle: "San Diego Patient",
testimonial: "The most professional and caring dental experience I've ever had. The results exceeded my expectations and the attention to detail is extraordinary.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial1.webp",
imageAlt: "Jennifer Martinez"
}, },
{ {
id: "2", id: "2", name: "Robert Chen", handle: "Business Executive", testimonial: "Finally found a dentist who understands aesthetics and function. My smile is now my confidence. Highly recommended to anyone serious about quality.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial2.webp", imageAlt: "Robert Chen"
name: "Robert Chen",
handle: "Business Executive",
testimonial: "Finally found a dentist who understands aesthetics and function. My smile is now my confidence. Highly recommended to anyone serious about quality.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial2.webp",
imageAlt: "Robert Chen"
}, },
{ {
id: "3", id: "3", name: "Sarah Williams", handle: "Entertainment Industry", testimonial: "This is the place where art meets science. My smile transformation has been life-changing. The expertise here is unmatched.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial3.webp", imageAlt: "Sarah Williams"
name: "Sarah Williams",
handle: "Entertainment Industry",
testimonial: "This is the place where art meets science. My smile transformation has been life-changing. The expertise here is unmatched.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial3.webp",
imageAlt: "Sarah Williams"
}, },
{ {
id: "4", id: "4", name: "Michael Torres", handle: "Loyal Patient", testimonial: "I've been a patient for 8 years. The consistent excellence, warm staff, and cutting-edge treatments keep me coming back with confidence.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image5.avif", imageAlt: "Michael Torres"
name: "Michael Torres",
handle: "Loyal Patient",
testimonial: "I've been a patient for 8 years. The consistent excellence, warm staff, and cutting-edge treatments keep me coming back with confidence.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image5.avif",
imageAlt: "Michael Torres"
}, },
{ {
id: "5", id: "5", name: "Amanda Rodriguez", handle: "Social Media Influencer", testimonial: "When your smile matters for your career, you go to the best. This practice delivered a smile that's both beautiful and natural-looking.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image6.avif", imageAlt: "Amanda Rodriguez"
name: "Amanda Rodriguez",
handle: "Social Media Influencer",
testimonial: "When your smile matters for your career, you go to the best. This practice delivered a smile that's both beautiful and natural-looking.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image6.avif",
imageAlt: "Amanda Rodriguez"
}, },
{ {
id: "6", id: "6", name: "David Kim", handle: "Healthcare Professional", testimonial: "The clinical precision combined with artistic vision is remarkable. This team truly understands comprehensive dental care at the highest level.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image7.avif", imageAlt: "David Kim"
name: "David Kim",
handle: "Healthcare Professional",
testimonial: "The clinical precision combined with artistic vision is remarkable. This team truly understands comprehensive dental care at the highest level.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image7.avif",
imageAlt: "David Kim"
} }
]} ]}
/> />
@@ -232,12 +177,11 @@ export default function LuxuryDentistPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterBase
logoText="Luxury Dental Care California" logoText="Empire Dental Clinic."
copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005" copyrightText="© 2025 Luxury Dental Care | Premium Dentistry Since 2005"
columns={[ columns={[
{ {
title: "Services", title: "Services", items: [
items: [
{ 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" },
@@ -245,8 +189,7 @@ export default function LuxuryDentistPage() {
] ]
}, },
{ {
title: "Practice", title: "Practice", items: [
items: [
{ label: "About Us", href: "#about" }, { label: "About Us", href: "#about" },
{ label: "Our Team", href: "#testimonials" }, { label: "Our Team", href: "#testimonials" },
{ label: "Technology", href: "#features" }, { label: "Technology", href: "#features" },
@@ -254,8 +197,7 @@ export default function LuxuryDentistPage() {
] ]
}, },
{ {
title: "Connect", title: "Connect", items: [
items: [
{ label: "Instagram", href: "https://instagram.com" }, { label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" }, { label: "Facebook", href: "https://facebook.com" },
{ label: "Google Reviews", href: "https://google.com" }, { label: "Google Reviews", href: "https://google.com" },

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-inter-tight), sans-serif; font-family: var(--font-open-sans), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-inter-tight), sans-serif; font-family: var(--font-inter), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f7f6f7; --background: #f5faff;
--card: #ffffff; --card: #ffffff;
--foreground: #0c1325; --foreground: #001122;
--primary-cta: #0798ff; --primary-cta: #15479c;
--primary-cta-text: #f7f6f7; --primary-cta-text: #f5faff;
--secondary-cta: #ffffff; --secondary-cta: #ffffff;
--secondary-cta-text: #0c1325; --secondary-cta-text: #001122;
--accent: #93c7ff; --accent: #a8cce8;
--background-accent: #a8cde8; --background-accent: #7ba3cf;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);