Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8e1550a9a5 | |||
| 80ea16d0f5 | |||
| 1608fd0cdf |
@@ -1,40 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Manrope } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-manrope", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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 - Professional Dental Care", description: "Professional dental care with a personal touch. Expert treatments and compassionate service."};
|
||||||
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"]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${manrope.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1402,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ export default function LandingPage() {
|
|||||||
<TestimonialCardSixteen
|
<TestimonialCardSixteen
|
||||||
tag="Patient Reviews"
|
tag="Patient Reviews"
|
||||||
title="What Our Patients Say"
|
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={[
|
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: "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" },
|
{ 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" },
|
||||||
|
|||||||
Reference in New Issue
Block a user