diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8b156eb..075bef9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,23 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const dmSans = DM_Sans({ + subsets: ["latin"], + weight: ["400", "500", "600", "700"], }); export const metadata: Metadata = { - title: "Bar U Justyny | Tanie Obiady Domowe w Ursynowie Warszawa", description: "Autentyczne polskie obiady od 20–40 zł. Duże porcje, świeże składniki, serdeczna obsługa. Jedzenie na miejscu, takeaway i dostarczamy w Ursynowie. ⭐ 4.5/5 z 690 opinii.", keywords: "obiady domowe Warszawa, tanie obiady Ursynów, bar mleczny Warszawa, kuchnia polska, takeaway Ursynów, dostarczamy obiady", metadataBase: new URL("https://barujustyny.pl"), - alternates: { - canonical: "https://barujustyny.pl" - }, - openGraph: { - title: "Bar U Justyny - Autentyczne Polskie Obiady w Ursynowie", description: "Tradycyjne polskie dania, duże porcje, przystępne ceny. Od 20–40 zł na osobę. Jedzenie na miejscu, takeaway, dostawa.", url: "https://barujustyny.pl", siteName: "Bar U Justyny", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/azerbaijani-meat-stew-piti-with-yogurt-wooden-board_114579-4556.jpg", alt: "Bar U Justyny - restauracja domowych obiadów" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Bar U Justyny - Domowe Obiady w Ursynowie", description: "Autentyczne polskie dania, duże porcje, tanie. ⭐ 4.5/5 z 690 opinii.", images: ["http://img.b2bpic.net/free-photo/azerbaijani-meat-stew-piti-with-yogurt-wooden-board_114579-4556.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Bar U Justyny - Domowe Obiady w Ursynowie", description: "Autentyczne polskie obiady, duże porcje, uczciwe ceny. Serdeczna obsługa w Ursynowie od 20–40 zł."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}