7 Commits

Author SHA1 Message Date
587afaaa73 Merge version_3 into main
Merge version_3 into main
2026-03-04 04:13:21 +00:00
5c4428980d Update src/app/page.tsx 2026-03-04 04:13:17 +00:00
13e4d02a3f Update src/app/layout.tsx 2026-03-04 04:13:17 +00:00
2da169d965 Merge version_2 into main
Merge version_2 into main
2026-03-04 04:10:16 +00:00
8e1550a9a5 Update src/app/page.tsx 2026-03-04 04:10:12 +00:00
80ea16d0f5 Update src/app/layout.tsx 2026-03-04 04:10:12 +00:00
1608fd0cdf Merge version_1 into main
Merge version_1 into main
2026-03-04 04:08:12 +00:00
2 changed files with 14 additions and 32 deletions

View File

@@ -1,40 +1,20 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Inter } from "next/font/google";
import "@/styles/globals.css";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "SmileCare Dental | Professional Dentist in Chicago", description: "Expert dental care for your whole family. From routine cleanings to advanced implants and cosmetic treatments. Schedule your appointment today.", keywords: "dentist, dental care, dental implants, teeth whitening, orthodontics, family dentistry, Chicago", openGraph: {
title: "SmileCare Dental | Your Trusted Dental Partner", description: "Professional dental care with a personal touch. Create beautiful, healthy smiles for your entire family.", type: "website", siteName: "SmileCare Dental", images: [
{
url: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23912.jpg", alt: "modern dental office dentist clinic interior professional healthcare clean medical space"
}
]
},
twitter: {
card: "summary_large_image", title: "SmileCare Dental", description: "Professional dental care with a personal touch", images: ["http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23912.jpg"]
}
};
title: "SmileCare Dental - Professional Dental Care", description: "Professional dental care with a personal touch. Expert treatments and compassionate service."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1402,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -85,6 +85,9 @@ export default function LandingPage() {
{ icon: Award, title: "Root Canal Therapy", description: "Painless root canal treatments to save your natural teeth and eliminate infection." },
{ icon: Heart, title: "Preventive Care", description: "Regular checkups and early intervention to prevent dental problems before they start." }
]}
buttons={[
{ text: "Schedule a Consultation", href: "contact" }
]}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
@@ -108,7 +111,7 @@ export default function LandingPage() {
<TestimonialCardSixteen
tag="Patient Reviews"
title="What Our Patients Say"
description="Real testimonials from satisfied patients who have experienced our compassionate care and professional service."
description="Join 2,500+ patients who trust us with their smiles"
testimonials={[
{ id: "1", name: "Sarah Mitchell", role: "Patient", company: "Chicago, IL", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-therapy_23-2148928886.jpg" },
{ id: "2", name: "Jennifer Rodriguez", role: "Patient", company: "Chicago, IL", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg" },
@@ -208,4 +211,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}