20 Commits

Author SHA1 Message Date
e0ab9cc3b8 Update src/app/layout.tsx 2026-03-07 23:56:59 +00:00
b9a2270a09 Update src/app/page.tsx 2026-03-07 23:56:11 +00:00
effce66e8e Update src/app/layout.tsx 2026-03-07 23:56:11 +00:00
9aeb442781 Merge version_14 into main
Merge version_14 into main
2026-03-07 23:50:53 +00:00
7002ed49d1 Update src/app/page.tsx 2026-03-07 23:50:48 +00:00
06f5bb819d Merge version_13 into main
Merge version_13 into main
2026-03-07 23:40:45 +00:00
5ddd49871f Update src/app/page.tsx 2026-03-07 23:40:41 +00:00
c6851ccc59 Merge version_13 into main
Merge version_13 into main
2026-03-07 23:34:50 +00:00
4418116a1e Update src/app/page.tsx 2026-03-07 23:34:46 +00:00
5803ea50ea Merge version_13 into main
Merge version_13 into main
2026-03-07 23:33:08 +00:00
3143b58ff4 Update src/app/page.tsx 2026-03-07 23:33:04 +00:00
a153407906 Merge version_13 into main
Merge version_13 into main
2026-03-07 23:29:27 +00:00
b00784086b Update src/app/page.tsx 2026-03-07 23:29:23 +00:00
aef6003853 Merge version_13 into main
Merge version_13 into main
2026-03-07 23:28:07 +00:00
af7cae69b8 Update src/app/page.tsx 2026-03-07 23:28:03 +00:00
f5e284ffdd Merge version_12 into main
Merge version_12 into main
2026-03-07 23:24:08 +00:00
0925738bed Merge version_12 into main
Merge version_12 into main
2026-03-07 23:22:07 +00:00
e626b43f38 Merge version_12 into main
Merge version_12 into main
2026-03-07 23:17:31 +00:00
0fcefb5dbc Merge version_12 into main
Merge version_12 into main
2026-03-07 23:14:39 +00:00
1300619f48 Merge version_12 into main
Merge version_12 into main
2026-03-07 23:10:29 +00:00
2 changed files with 23 additions and 47 deletions

View File

@@ -1,17 +1,15 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google"; import { Inter } from "next/font/google";
import "./styles/base.css";
import "./styles/variables.css";
import "./globals.css"; import "./globals.css";
const geist = Geist({ const inter = Inter({
variable: "--font-geist-sans", subsets: ["latin"], variable: "--font-inter", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "EXPERT DENTAL CARE", description: "Expert Dental Care provides comprehensive dental treatments with experienced dentists and advanced technology."}; title: "EXPERT DENTAL CARE - Professional Dental Services", description: "Welcome to EXPERT DENTAL CARE. We provide comprehensive dental treatments including teeth cleaning, dental implants, teeth whitening, root canal treatment, braces, and cosmetic dentistry."};
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -19,9 +17,21 @@ export default function RootLayout({
children: React.ReactNode; children: React.ReactNode;
}) { }) {
return ( return (
<html lang="en"> <html lang="en" suppressHydrationWarning>
<body className={`${geist.variable} ${geistMono.variable} antialiased`}> <body className={`${inter.variable}`}>
{children} {children}
<script
dangerouslySetInnerHTML={{
__html: `
(function() {
const theme = localStorage.getItem('theme');
if (theme === 'dark' || (!theme && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark');
}
})();
`,
}}
/>
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1392,4 +1402,4 @@ export default function RootLayout({
</body> </body>
</html> </html>
); );
} }

View File

@@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
@@ -12,7 +11,6 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import { Shield, Zap, Heart, DollarSign } from 'lucide-react'; import { Shield, Zap, Heart, DollarSign } from 'lucide-react';
const handleAppointmentClick = () => { const handleAppointmentClick = () => {
@@ -41,7 +39,6 @@ export default function LandingPage() {
brandName="EXPERT DENTAL CARE" brandName="EXPERT DENTAL CARE"
navItems={[ navItems={[
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
@@ -135,19 +132,6 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "Meet Our Lead Dentist with Over 20 Years of Excellence" }
]}
buttons={[
{ text: "Learn More About Our Team", href: "#testimonials" }
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<div> <div>
<FeatureBorderGlow <FeatureBorderGlow
@@ -193,7 +177,7 @@ export default function LandingPage() {
}, },
{ {
id: 4, id: 4,
title: "Personalized Approach", description: "Every patient gets a customized treatment plan tailored to their needs", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772920945060-uuv27r5h.png?_wi=4", imageAlt: "Personalized care", tag: "Custom", subtitle: "Tailored" title: "Personalized Approach", description: "Every patient gets a customized treatment plan tailored to their needs", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772926378814-cb0nth1m.jpg", imageAlt: "Personalized care", tag: "Custom", subtitle: "Tailored"
} }
]} ]}
textboxLayout="default" textboxLayout="default"
@@ -233,24 +217,6 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="socialproof" data-section="socialproof">
<SocialProofOne
title="Trusted by Industry Leaders"
description="Join thousands of patients who have experienced our exceptional dental care"
tag="Partners"
textboxLayout="default"
useInvertedBackground={false}
names={[
"American Dental Association", "International Implant Association", "Cosmetic Dentistry Academy", "Orthodontic Society", "Dental Excellence Network", "Patient Care Foundation", "International Dental Federation", "Advanced Dental Institute", "Global Orthodontics Alliance", "Dental Innovation Hub"
]}
logos={[
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772924976157-reitda45.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQFSYOeBWG7LyEYTdDfN4zPwli/uploaded-1772923976239-t0hjwr9a.png"
]}
speed={40}
showCard={true}
/>
</div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardSix <TestimonialCardSix
title="What Our Patients Say" title="What Our Patients Say"
@@ -289,7 +255,7 @@ export default function LandingPage() {
description="Schedule your next dental visit with us. Our friendly team is ready to help you achieve your perfect smile." description="Schedule your next dental visit with us. Our friendly team is ready to help you achieve your perfect smile."
background={{ variant: "plain" }} background={{ variant: "plain" }}
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/happy-man-welcoming-lady-sitting-sofa-holding-digital-tablet_23-2147879153.jpg?_wi=2" imageSrc="http://img.b2bpic.net/premium-photo/nature-reserve-zelenci-krajnska-gora-slovenia-europe-wonderful-morning-view-zelenci-nature-reserve-slovenia-travel_527096-20488.jpg?id=42831486"
imageAlt="Modern dental clinic" imageAlt="Modern dental clinic"
mediaAnimation="slide-up" mediaAnimation="slide-up"
mediaPosition="right" mediaPosition="right"