diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 225327f..d47d00b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,35 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "BAMBOo Music Pub | Praha Strašnice - Hudba, Pivo a Přátelé", description: "BAMBOo je autentický hudební bar v Praze se studeným pivem, kuličníkem, fotbálkem a živou hudbou. Otevřeno denně od 2:00 ráno. Rezervujte si stůl nyní!", keywords: "hudební bar Praha, music pub Strašnice, pivo Praha, restaurace Strašnice, noční podnik Praha", metadataBase: new URL("https://bamboo-music-pub.cz"), - alternates: { - canonical: "https://bamboo-music-pub.cz" - }, - openGraph: { - title: "BAMBOo Music Pub | Autentický Hudební Bar v Praze", description: "Přijďte si užít nejlepší atmosféru hudebního baru v Praze. Studeného pivo, hry, a skvělá hudba každý den.", url: "https://bamboo-music-pub.cz", siteName: "BAMBOo Music Pub", images: [ - { - url: "http://img.b2bpic.net/free-photo/vintage-table-arrangement-antique-store_23-2149640751.jpg", alt: "BAMBOo Music Pub Interiér" - } - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "BAMBOo Music Pub - Nejlepší Hudební Bar v Praze", description: "Autentická atmosféra, čepované pivo a živá hudba. Zarezervujte si svůj stůl v BAMBOo!", images: ["http://img.b2bpic.net/free-photo/musician-playing-electronic-music-live-performance-nightclub-dj-headphones-mixing-sound-controller-panel-stage-while-crowd-partying-discotheque-club_482257-67146.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "BAMBOo Music Pub | Hudební bar v Praze", description: "BAMBOo je autentický hudební bar v Praze se studeným pivem, hrami a živou hudbou. Rezervujte si stůl a užijte si nezapomenutelný večer."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - + + + {children} - + +