From 01ef266712823270ae0b882b9e7232be711f285d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 12:12:35 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++++++----------------------------------- 1 file changed, 10 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ba5c9cb..ccab3e6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,24 @@ import type { Metadata } from "next"; -import { Cormorant_Garamond } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const cormorantGaramond = Cormorant_Garamond({ - variable: "--font-cormorant-garamond", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Kazkovyy Dim - Ukrainian Banquet Restaurant Complex", description: "Authentic Ukrainian banquet venue with fireplace, traditional ethno design, and family-focused hospitality. Perfect for weddings, celebrations, and events.", keywords: "Ukrainian restaurant, banquet hall, event venue, ethno style, family dining, Kyiv", metadataBase: new URL("https://kazkovyydim.ua"), - alternates: { - canonical: "https://kazkovyydim.ua" - }, - openGraph: { - title: "Kazkovyy Dim - Authentic Ukrainian Banquets", description: "Experience warmth, tradition, and Ukrainian hospitality at our beautifully designed banquet complex.", url: "https://kazkovyydim.ua", siteName: "Kazkovyy Dim", images: [{ - url: "https://img.b2bpic.net/free-photo/full-shot-woman-getting-warmer-by-fire_23-2149172517.jpg", alt: "Kazkovyy Dim - Warm fireplace interior" - }], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "Kazkovyy Dim - Ukrainian Banquet Restaurant", description: "Authentic family-owned banquet venue with ethno style and warm hospitality.", images: ["https://img.b2bpic.net/free-photo/full-shot-woman-getting-warmer-by-fire_23-2149172517.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Kazkovyy Dim - Authentic Ukrainian Banquets & Family Dining", description: "Experience warmth, tradition, and ethno-cultural heritage at Kazkovyy Dim. Premium banquet spaces, authentic cuisine, and unforgettable celebrations."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}