From 8caa1a2a5dc5a8b0ffee206c3cb690be4fa6a466 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:43:21 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1423 +------------------------------------------- 1 file changed, 25 insertions(+), 1398 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 604420e..534d9b1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,30 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Reštaurácia a penzión pod vlekom - Prakovce", description: "Autentická reštaurácia so slovenským jedlom a pohodlným penziónom v Prakovciach. Ideálne pre turistov a rodiny. Rezervujte stôl alebo izbu teraz.", keywords: "reštaurácia Prakovce, penzión Prakovce, slovenské jedlo, ubytovanie, pizza, tradicionalná kuchyňa", openGraph: { - title: "Reštaurácia a penzión pod vlekom", description: "Tradičné slovenské jedlo a pohodlné ubytovanie v srdci Prakoviec", url: "https://podvlekom.sk", siteName: "Pod vlekom", type: "website"}, - twitter: { - card: "summary_large_image", title: "Reštaurácia a penzión pod vlekom", description: "Autentické slovenské jedlo, penzión a horská atmosféra"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Pod vlekom - Reštaurácia a Penzión", description: "Tradičná slovenská reštaurácia a penzión v Prakovciach. Autentické jedlo, pohostinný penzión a horská atmosféra."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + + {children} - -