diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b25e93e..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Taste Mantra - Authentic Kerala Restaurant in Guruvayur", description: "Experience authentic Kerala cuisine at Taste Mantra in Guruvayur. Premium traditional dishes, warm ambiance, and family dining. Reserve your table today.", keywords: "Kerala restaurant, authentic cuisine, Guruvayur dining, Indian food, Kerala dishes, biriyani, sadya, family restaurant", metadataBase: new URL("https://tastemantra.com"), - alternates: { - canonical: "https://tastemantra.com" - }, - openGraph: { - title: "Taste Mantra - Authentic Kerala Flavours", description: "Experience the taste of traditional Kerala cuisine in Guruvayur", url: "https://tastemantra.com", siteName: "Taste Mantra Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/cooking-using-fresh-ground-spices-with-big-small-bowls-spice-black-table-with-powder-spillage-its-surface-overhead-view-with-copyspace-still-life-flat-lay-top-view_639032-1232.jpg", alt: "Kerala Traditional Food" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Taste Mantra - Authentic Kerala Cuisine", description: "Premium Kerala restaurant in Guruvayur serving authentic traditional dishes", images: ["http://img.b2bpic.net/free-photo/cooking-using-fresh-ground-spices-with-big-small-bowls-spice-black-table-with-powder-spillage-its-surface-overhead-view-with-copyspace-still-life-flat-lay-top-view_639032-1232.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} - -