From 93fad56e459a056a3656190636c4dd1dec686182 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 21:20:49 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 68 +++++----------------------------------------- 1 file changed, 7 insertions(+), 61 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 666a37b..b97fada 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,73 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "SmileCare Dental Clinic - Expert Dental Care & Treatments", - description: "Professional dental clinic offering general dentistry, implants, Invisalign, and cosmetic treatments. Experienced team, friendly staff, reasonable prices.", - keywords: "dentist, dental clinic, dental implants, Invisalign, root canal, cosmetic dentistry, children dentist", - metadataBase: new URL("https://smilecare-dental.com"), - alternates: { - canonical: "https://smilecare-dental.com", - }, - openGraph: { - title: "SmileCare Dental Clinic - Expert Dental Care", - description: "Professional dental care with a friendly team focused on your comfort and results.", - siteName: "SmileCare Dental", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/happy-female-dentist-pointing-digital-tablet-screen-female-patient-clinic_23-2147879186.jpg", - alt: "SmileCare Dental Clinic", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "SmileCare Dental Clinic", - description: "Professional dental care with exceptional results. Book your appointment today.", - images: ["http://img.b2bpic.net/free-photo/happy-female-dentist-pointing-digital-tablet-screen-female-patient-clinic_23-2147879186.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "SmileCare Dental Clinic", description: "Professional dental care with a friendly team focused on your comfort and exceptional results."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}