diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c62f0a2..b80ad1e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1437 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; +import { Poppins } 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 inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Saffron Restaurant | Authentic Indian Fine Dining", - description: "Experience authentic Indian cuisine at Saffron Restaurant. Premium dishes, traditional recipes, and warm hospitality. Reserve your table today.", - keywords: "Indian restaurant, authentic cuisine, fine dining, biryani, tandoori, reservation", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Saffron Restaurant | Authentic Indian Fine Dining", - description: "Experience the true taste of India. Premium cuisine, warm hospitality, and elegant ambiance.", - url: "https://saffronrestaurant.com", - siteName: "Saffron Restaurant", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-bowl-with-pakistani-food_23-2148825117.jpg", - alt: "Saffron Restaurant - Authentic Indian Cuisine", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Saffron Restaurant | Authentic Indian Fine Dining", - description: "Experience authentic Indian cuisine with premium spices and traditional recipes.", - images: ["http://img.b2bpic.net/free-photo/high-angle-bowl-with-pakistani-food_23-2148825117.jpg"], - }, -}; + title: "Saffron Restaurant - Authentic Indian Cuisine", description: "Experience the true taste of India at Saffron Restaurant. Authentic Indian cuisine crafted with premium spices and traditional recipes."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -