diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c7ce431..45e5ad3 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 { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Лофт-пространство для мероприятий в Екатеринбурге", - description: "Аренда промышленного лофта для свадеб, корпоративных событий и праздников. Просторные залы, современное оборудование, гибкие тарифы.", - keywords: "аренда лофта, мероприятия, свадьба, корпоратив, Екатеринбург, event venue", - openGraph: { - title: "Лофт-пространство для мероприятий", - description: "Идеальное место для вашего события", - type: "website", - siteName: "Лофт Екатеринбург", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Лофт Екатеринбург - Пространство для мероприятий", description: "Лофт-пространство для свадеб, корпоративных событий и частных праздников в Екатеринбурге"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}