From fef6d586c8ab5be97c2df8b18eb4f51209bd309a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 18:15:08 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1412 +------------------------------------------- 1 file changed, 11 insertions(+), 1401 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3929126..ff8889d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Dosa & Samosa | Autentická indická kuchyňa a donáška", description: "Objavte Dosa & Samosa — moderné indické bistro s rodinnou atmosférou, výborným curry, samosami a obľúbenými klasikami. Objednajte online alebo si rezervujte stôl.", keywords: "indická kuchyňa, curry, samosa, donáška, reštaurácia, bistro, Bratislava", openGraph: { - title: "Dosa & Samosa | Autentická indická kuchyňa", description: "Moderné indické bistro s poctivou kuchyňou, výraznými chuťami a rodinnou pohostinnosťou. Objednajte donášku alebo si rezervujte stôl.", siteName: "Dosa & Samosa", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/vertical-view-boiled-rice-brown-wooden-pot-different-spices_140725-135274.jpg", alt: "Dosa & Samosa - Autentická indická kuchyňa"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Dosa & Samosa | Autentická indická kuchyňa", description: "Moderné indické bistro s poctivou kuchyňou. Objednajte donášku alebo si rezervujte stôl.", images: ["http://img.b2bpic.net/free-photo/vertical-view-boiled-rice-brown-wooden-pot-different-spices_140725-135274.jpg"], - }, -}; + title: "Dosa & Samosa", description: "Autentická indická kuchyňa s rodinnou atmosférou"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -