From 70a5dd75084cf9b1cdb1cff1d9baf763194e04d9 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:17:59 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 ++++++++++------------------------------------ 1 file changed, 12 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1fb69b3..a2285a7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Starostova Hospoda - Tradiční česká hospoda od 1993", description: "Autentická česká hospoda od roku 1993 vedle dřevěné kaple z 14. století. Sály pro akce, tradičních česká jídla, ubytování. Rezervace dostupné.", keywords: "česká hospoda, tradiční jídla, sála pro akce, rezervace, Praha, restaurace", metadataBase: new URL("https://starostovahospoda.cz"), - alternates: { - canonical: "https://starostovahospoda.cz"}, - openGraph: { - title: "Starostova Hospoda - Tradiční česká hospoda", description: "Tradiční česká hospoda s autentickou atmosférou. Jídla, piva, sály pro všechny příležitosti.", url: "https://starostovahospoda.cz", siteName: "Starostova Hospoda", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/decorative-background-wood-texture_23-2148210001.jpg", alt: "Starostova Hospoda - interiér"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Starostova Hospoda", description: "Tradiční česká hospoda od roku 1993", images: ["http://img.b2bpic.net/free-photo/decorative-background-wood-texture_23-2148210001.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Starostova Hospoda", description: "Tradiční česká hospoda od roku 1993"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +