|
|
|
|
@@ -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>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|