diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d8190eb..d349c10 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1438 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "City Penzion Košice | Comfortable Guesthouse Accommodation", - description: "Book affordable, comfortable accommodation at City Penzion Košice. Located 1.5 km from city center with free Wi-Fi and parking. Reserve your stay online now.", - keywords: "accommodation Košice, guesthouse Košice, City Penzion Košice, pension Košice, budget accommodation Slovakia, rooms Košice, overnight stay Košice", - openGraph: { - title: "City Penzion Košice - Book Your Stay", - description: "Discover comfortable guesthouse accommodation in Košice. Free Wi-Fi, parking, and professional service. Located near historic city center.", - type: "website", - siteName: "City Penzion Košice", - images: [ - { - url: "http://img.b2bpic.net/free-photo/full-shot-old-women-sitting-bench_23-2149357054.jpg", - alt: "City Penzion Košice Exterior", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "City Penzion Košice - Guesthouse Accommodation", - description: "Comfortable rooms in Košice. Free Wi-Fi & parking. Book online now.", - images: [ - "http://img.b2bpic.net/free-photo/full-shot-old-women-sitting-bench_23-2149357054.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "City Penzion Košice - Comfortable Accommodation", description: "Discover comfortable, affordable accommodation in Košice. Located 1.5 km from the city center with free Wi-Fi, parking, and modern amenities."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -