diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f1b13f7..cf74a51 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,22 @@ -import type { Metadata } from "next"; -import { Roboto } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "The Bar - Premium Cocktails & Social Lounge", description: "Experience unforgettable nights at The Bar. Award-winning cocktails, expert mixologists, and exceptional atmosphere. Reserve your table today.", keywords: "cocktail bar, craft cocktails, lounge, nightlife, premium drinks, mixology, bar reservations", metadataBase: new URL("https://thebar.com"), - alternates: { - canonical: "https://thebar.com"}, - openGraph: { - title: "The Bar - Premium Cocktails & Social Lounge", description: "Experience unforgettable nights at The Bar. Award-winning cocktails, expert mixologists, and exceptional atmosphere.", url: "https://thebar.com", siteName: "The Bar", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-pretty-lady-enjoying-free-time-city-cafeteria-bar-drinking-lemon-having-fun-trendy-hipster-outfit-toned-colors_291049-1730.jpg", alt: "The Bar - Premium Cocktails"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The Bar - Premium Cocktails & Social Lounge", description: "Experience unforgettable nights at The Bar. Award-winning cocktails, expert mixologists, and exceptional atmosphere.", images: ["http://img.b2bpic.net/free-photo/young-pretty-lady-enjoying-free-time-city-cafeteria-bar-drinking-lemon-having-fun-trendy-hipster-outfit-toned-colors_291049-1730.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'The Bar - Premium Cocktail Lounge', + description: 'Experience unforgettable moments at The Bar. Handcrafted cocktails, exceptional atmosphere, and premium service since 2015.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}