diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6283953..347cd15 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1414 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Kolorowa | Kawiarnia w Gliwicach – Smak tradycji", description: "Kolorowa to kawiarnia z duszą w Gliwicach. Domowe desery, kawa premium i atmosfera, do której chcesz wracać. Zapraszamy codziennie 10:00–23:00.", keywords: "kawiarnia Gliwice, kawa, desery homemade, café Gliwice, miejsce spotkań, nostalgia, tradycja", openGraph: { - title: "Kolorowa – Kawiarnia z sercem Gliwic", description: "Miejsce, gdzie tradycja spotyka się z przytulnością. Domowe desery, kawa i rozmowy od lat.", siteName: "Kolorowa", type: "website"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Kolorowa - Kawiarnia", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -