diff --git a/src/app/layout.tsx b/src/app/layout.tsx index abbb8f8..8962b00 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } 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"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "AGUS Restaurant - Fine Dining in Riyadh, Al Mathar", description: "Experience exceptional fine dining at AGUS Restaurant in Al Mathar Ash Shamali, Riyadh. Premium cuisine, impeccable service, and elegant atmosphere. 5-star rated. Open late with dine-in, takeaway & delivery.", keywords: "fine dining restaurant Riyadh, AGUS restaurant, Al Mathar restaurant, upscale dining Riyadh, premium restaurant, reservation", metadataBase: new URL("https://agusrestaurant.com"), - alternates: { - canonical: "https://agusrestaurant.com"}, - openGraph: { - title: "AGUS Restaurant - Premium Fine Dining", description: "Discover exceptional cuisine and elegant ambiance at AGUS Restaurant in Riyadh", url: "https://agusrestaurant.com", siteName: "AGUS Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/interior-cafe-with-brick-walls_53876-32361.jpg", alt: "AGUS Restaurant elegant interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AGUS Restaurant - Fine Dining Excellence", description: "Premium dining experience in Riyadh - exceptional cuisine and impeccable service", images: ["http://img.b2bpic.net/free-photo/interior-cafe-with-brick-walls_53876-32361.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "AGUS Restaurant | Fine Dining in Riyadh", description: "Experience fine dining at AGUS Restaurant in Riyadh with exceptional cuisine, impeccable service, and elegant atmosphere. Open late with dine-in, takeaway, and delivery options."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -