diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6c487fd..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +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: "The Bridge Restaurant | Ulaanbaatar Dining", description: "The Bridge is a cozy restaurant in Ulaanbaatar offering diverse menu, warm atmosphere, and affordable prices. Reservations available. Call 7711 6466.", keywords: "restaurant Ulaanbaatar, dining near Chinggis Khan, casual restaurant, local food, reservations", metadataBase: new URL("https://thebridgerestaurant.mn"), - alternates: { - canonical: "https://thebridgerestaurant.mn"}, - openGraph: { - title: "The Bridge Restaurant | Best Dining in Ulaanbaatar", description: "Experience cozy dining at The Bridge. Great food, relaxed atmosphere, perfect for families and groups.", url: "https://thebridgerestaurant.mn", siteName: "The Bridge Restaurant", images: [ - { - url: "http://img.b2bpic.net/free-photo/table-with-white-servant_140725-6421.jpg", alt: "The Bridge Restaurant"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "The Bridge Restaurant | Ulaanbaatar", description: "Cozy restaurant with diverse menu and warm hospitality. Call 7711 6466 to reserve.", images: ["http://img.b2bpic.net/free-photo/table-with-white-servant_140725-6421.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} - -