diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6dee6ed..18b96a9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Shiv Shakti - Authentic Pure Veg Indian Restaurant", description: "Discover Shiv Shakti, your family's haven for authentic, affordable South & North Indian vegetarian cuisine. Fresh ingredients, traditional recipes, and warm hospitality.", keywords: "vegetarian restaurant, Indian food, South Indian cuisine, North Indian food, pure veg, dosa, thali, paneer, authentic Indian", metadataBase: new URL("https://shivshakti.restaurant"), - alternates: { - canonical: "https://shivshakti.restaurant"}, - openGraph: { - title: "Shiv Shakti - Pure Vegetarian Indian Cuisine", description: "Authentic South & North Indian vegetarian food for the whole family. Fresh ingredients, traditional recipes, affordable meals.", url: "https://shivshakti.restaurant", siteName: "Shiv Shakti", type: "website"}, - twitter: { - card: "summary_large_image", title: "Shiv Shakti - Pure Vegetarian Indian Restaurant", description: "Authentic Indian cuisine for families who value pure, affordable, and delicious vegetarian food."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Shiv Shakti", description: "Authentic Pure Veg Indian Food for the Whole Family"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -