diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4d17544..86bf480 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Shri ji Restaurant - Fine Dining in Palwal | Chinese & Indian Cuisine", description: "Experience authentic Indian and Chinese cuisine at Shri ji Restaurant in Palwal. Order online, reserve your table, and enjoy exceptional dining with premium ambience and quality service.", keywords: "restaurant Palwal, Indian Chinese food, fine dining, online food delivery, Momos, Chow Mein, Pizza", openGraph: { - title: "Shri ji Restaurant - Premium Dining Experience", description: "Discover culinary excellence at Shri ji Restaurant. Authentic flavors, premium service, and unforgettable dining moments.", siteName: "Shri ji Restaurant", type: "website", url: "http://img.b2bpic.net/free-photo/life-style_1122-1806.jpg", images: [ - { - url: "http://img.b2bpic.net/free-photo/life-style_1122-1806.jpg", alt: "Shri ji Restaurant dining ambience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Shri ji Restaurant - Fine Dining in Palwal", description: "Experience authentic Indian & Chinese cuisine with exceptional service and ambience.", images: ["http://img.b2bpic.net/free-photo/life-style_1122-1806.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Shri ji Restaurant", description: "Experience authentic Indian & Chinese cuisine at Shri ji Restaurant in Palwal"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}