diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b67ea7..1b51ba3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Moorthys Mathai - Authentic South Indian Restaurant", description: "Experience authentic South Indian cuisine at Moorthys Mathai. Enjoy traditional banana leaf rice, crispy fried fish, and rich curries. Reserve your table today.", keywords: "South Indian restaurant, authentic cuisine, banana leaf rice, fried fish, curry, local dining", metadataBase: new URL("https://moorthysmathai.com"), - alternates: { - canonical: "https://moorthysmathai.com"}, - openGraph: { - title: "Moorthys Mathai - Authentic South Indian Restaurant", description: "Discover traditional South Indian flavors at Moorthys Mathai. Fresh ingredients, time-honored recipes, warm hospitality. Reserve now.", url: "https://moorthysmathai.com", siteName: "Moorthys Mathai", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/vertical-view-plain-boiled-rice-meal-different-spices_140725-136834.jpg", alt: "Authentic banana leaf rice"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Moorthys Mathai - Authentic South Indian Restaurant", description: "Reserve your table for authentic South Indian dining. Traditional recipes, fresh ingredients, warm hospitality.", images: ["http://img.b2bpic.net/free-photo/vertical-view-plain-boiled-rice-meal-different-spices_140725-136834.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Moorthys Mathai - Authentic South Indian Cuisine", description: "Experience authentic South Indian flavors at Moorthys Mathai. Traditional banana leaf rice, crispy fried fish, and rich curries since 1998."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -