From 11a83f0492f6ede1e24850c6c2410a80b9cd640c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 12:07:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 39 ++++++--------------------------------- 1 file changed, 6 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a66cf68..9ec06af 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}