@@ -1,46 +1,20 @@
import type { Metadata } from "next" ;
import { Halant } from "next/font/google" ;
import { Inter } from "next/font/google" ;
import { Inter_Tight } 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 interTight = Inter_Tight ( {
variable : "--font-inter-tight" , subsets : [ "latin" ] ,
weight : [ "100" , "200" , "300" , "400" , "500" , "600" , "700" , "800" , "900" ] ,
} ) ;
const inter = Inter ( { subsets : [ "latin" ] } ) ;
export const metadata : Metadata = {
title : "Estelife - Клиника оториноларингологии | ЛОР Врачи " , description : "Профессиональная клиника оториноларингологии Estelife. Опытные ЛОР-врачи, современное оборудование, быстрая диагностика и лечение заболеваний у х а , горла и носа для взрослых и детей." , keywords : "ЛОР врач, оториноларинголог, лечение ЛОР, диагностика, гайморит, тонзиллит, проблемы с о слухом, клиника" , openGraph : {
title : "Estelife - Профессиональная ЛОР Клиника" , description : "Современная клиника оториноларингологии с опытными специалистами и инновационным оборудованием" , siteName : "Estelife" } ,
twitter : {
card : "summary_large_image" , title : "Estelife - ЛОР Клиника" , description : "Профессиональное лечение заболеваний у х а , горла и носа" } ,
} ;
title : "Estelife - ЛОР клиника " , description : "Профессиональная помощь для у х а , горла и носа. Современное оборудование, опытные врачи , индивидуальный подход." } ;
export default function RootLayout ( {
children ,
} : Readonly < {
} : {
children : React.ReactNode ;
} > ) {
} ) {
return (
< html lang = "en" suppressHydrationWarning >
< ServiceWrapper >
< body
className = { ` ${ halant . variable } ${ inter . variable } ${ interTight . variable } antialiased ` }
>
< Tag / >
{ children }
< html lang = "en" >
< body className = { inter . className } > { children }
< script
dangerouslySetInnerHTML = { {
__html : `
@@ -1408,7 +1382,6 @@ export default function RootLayout({
} }
/ >
< / body >
< / ServiceWrapper >
< / html >
) ;
}