From e747564b764f953cb3850d8002da2738171f6e82 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 10:51:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 11 insertions(+), 1408 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 75153e7..f2f9403 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Restauracja Kaszubska – Sale Weselne i Imprezy w Kosakowo", description: "Elegancka restauracja i sala weselna w Kosakowo. Zarezerwuj imprezę: wesela, urodziny, komunia, rocznice. Tradycyjna kuchnia polska i profesjonalna obsługa.", keywords: "restauracja Kosakowo, sala weselna, wesela, imprezy, komunia, restauracja kaszubska, catering", metadataBase: new URL("https://kaszubska.pl"), - alternates: { - canonical: "https://kaszubska.pl"}, - openGraph: { - title: "Restauracja Kaszubska – Obchodź swoje chwile", description: "Przytulna restauracja z tradycyjną kuchnią polską. Idealna do wesel, urodzin, komunii i każdej imprezy.", url: "https://kaszubska.pl", siteName: "Restauracja Kaszubska", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/engagement-event-table-with-tulle-tablecloth-flowers_114579-2084.jpg", alt: "Elegancka sala weselna Restauracji Kaszubskiej"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Restauracja Kaszubska – Obchodź swoje chwile", description: "Przytulna restauracja z tradycyjną kuchnią polską idealna do wesel, urodzin i każdej imprezy.", images: ["http://img.b2bpic.net/free-photo/engagement-event-table-with-tulle-tablecloth-flowers_114579-2084.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next app", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -