From c4c238fc9e929a139476ea7444e41e0ebc78ec04 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 19:06:01 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 70 +++++----------------------------------------- 1 file changed, 7 insertions(+), 63 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e208ad6..52d5527 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", - subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Restaurace & Vinárna Jadran Plzeň | Středomořská Kuchyně", - description: "Elegantní restaurace v Plzni s autentickou středomořskou kuchyní. Čerstvé ryby, vybraná vína a přátelská atmosféra. Rezervujte si svůj stůl online!", - keywords: "restaurace Plzeň, vinárna, středomořská kuchyně, ryby, vína, rezervace", - metadataBase: new URL("https://jadran-plzen.cz"), - alternates: { - canonical: "https://jadran-plzen.cz", - }, - openGraph: { - title: "Restaurace & Vinárna Jadran - Plzeň", - description: "Objevte autentickou středomořskou kuchyni v srdci Plzně. Kvalitní jídlo, vybraná vína a přátelský personál.", - url: "https://jadran-plzen.cz", - siteName: "Restaurace & Vinárna Jadran", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/decorated-wedding-reception-venue-with-view-sea-through-windows_637285-1001.jpg", - alt: "Restaurace Jadran", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Restaurace & Vinárna Jadran", - description: "Elegantní středomořská restaurace v Plzni", - images: ["http://img.b2bpic.net/free-photo/decorated-wedding-reception-venue-with-view-sea-through-windows_637285-1001.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Restaurace & Vinárna Jadran - Plzeň", description: "Elegantní restaurace v srdci Plzně s autentickou středomořskou kuchyní, vybranými víny a přátelskou atmosférou."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}