diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6c6fef2..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,27 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Magacin Coffee & Food Bar | Novi Sad Nightlife & Brunch", description: "Discover Magacin, Novi Sad's premier industrial cafe and bar. Amazing coffee, brunch, cocktails, live music & DJ nights. Reserve your table today.", keywords: "coffee bar Novi Sad, brunch restaurant, live music venue, industrial cafe, cocktail bar, nightlife Serbia", metadataBase: new URL("https://magacin.rs"), - alternates: { - canonical: "https://magacin.rs" - }, - openGraph: { - title: "Magacin Coffee & Food Bar", description: "Industrial atmosphere. Great food. Nights to remember. Experience Novi Sad's most creative gathering place.", url: "https://magacin.rs", siteName: "Magacin", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/modern-employees_1098-16168.jpg", alt: "Magacin Industrial Interior" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Magacin Coffee & Food Bar", description: "Industrial atmosphere. Great food. Nights to remember.", images: ["http://img.b2bpic.net/free-photo/modern-employees_1098-16168.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} - -