diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1aaa907..e6332be 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Patne Restaurant & Event Lawn in Khed - Indian Dining & Weddings", description: "Experience authentic veg & non-veg Indian cuisine at Patne Restaurant in Khed. Spacious event lawn perfect for weddings, receptions & celebrations. Open until 11:30 PM. 4.2★ rated.", keywords: "restaurant in khed maharashtra, best veg non veg restaurant in khed, event lawn in khed, wedding lawn in khed, Indian restaurant, catering services, patne restaurant", metadataBase: new URL("https://patnerestaurant.com"), - alternates: { - canonical: "https://patnerestaurant.com"}, - openGraph: { - title: "Patne Restaurant & Event Lawn - Authentic Indian Dining", description: "Premier Indian restaurant in Khed with spacious lawn for weddings and events. Veg & non-veg specialties.", url: "https://patnerestaurant.com", siteName: "Patne Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/restaurant-interior_1127-3394.jpg", alt: "Patne Restaurant Interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Patne Restaurant & Event Lawn - Khed", description: "Authentic Indian cuisine & premium event hosting in Khed, Maharashtra", images: ["http://img.b2bpic.net/free-photo/restaurant-interior_1127-3394.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Patne Restaurant", description: "Authentic Indian cuisine and premium event hosting venue"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +