diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0eddcb6..14104fd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +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({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Meridian Healthcare | Advanced Dental & Medical Care", description: "Experience modern healthcare enhanced by cutting-edge 3D imaging, AI diagnostics, and minimally invasive procedures. Schedule your appointment with our expert team today.", keywords: "dental care, modern dentistry, 3D imaging, dental implants, healthcare services, advanced treatment", metadataBase: new URL("https://meridian-healthcare.com"), - alternates: { - canonical: "https://meridian-healthcare.com"}, - openGraph: { - title: "Meridian Healthcare | Advanced Care, Beautifully Designed", description: "Experience modern healthcare enhanced by cutting-edge technology and compassionate service.", url: "https://meridian-healthcare.com", siteName: "Meridian Healthcare", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23912.jpg", alt: "Modern dental facility"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Meridian Healthcare | Advanced Care, Beautifully Designed", description: "Experience modern healthcare enhanced by cutting-edge technology.", images: ["http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23912.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Meridian Healthcare", description: "Advanced Care, Beautifully Designed"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}