diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2db4e9b..ec26731 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,20 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "KingAuto - Autoservis Praha 10 Vršovice | Opravy vozidel", description: "Profesionální autoservis KingAuto v Praze 10. Mechanické opravy, diagnostika, údržba. Kvalita, férové ceny, osobní přístup. Tel: +420 722 440 699", keywords: "autoservis Praha 10, autoservis Vršovice, oprava auta Praha, servis vozidel, mechanik Praha", metadataBase: new URL("https://kingauto.cz"), - alternates: { - canonical: "https://kingauto.cz" - }, - openGraph: { - title: "KingAuto - Profesionální autoservis v Praze 10", description: "Rychlé opravy, férové ceny a osobní přístup. Objednejte si servis online nebo zavolejte.", url: "https://kingauto.cz", siteName: "KingAuto", type: "website" - }, - twitter: { - card: "summary_large_image", title: "KingAuto - Autoservis Praha 10", description: "Profesionální servis a opravy vozidel - Praha 10 Vršovice" - }, - robots: { - index: true, - follow: true - } -}; + title: "KingAuto - Profesionální autoservis Praha 10", description: "Autoservis KingAuto v Praze 10 - Vršovice. Kvalitní opravy, diagnostika a servis vozidel všech značek."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}