diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c535220..9c51c14 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,25 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; -import { Inter } from "next/font/google"; +import localFont from "next/font/local"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const geistSans = localFont({ + src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"}); +const geistMono = localFont({ + src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"}); export const metadata: Metadata = { - title: "Masala Kitchen - Authentic Indian & Chinese Cuisine", description: "Experience authentic Indian and Chinese food at Masala Kitchen. Premium vegetarian, non-vegetarian dishes and Asian specialties. Order online or visit us today!", keywords: "Indian restaurant, Chinese food, Indian cuisine, vegetarian, non-vegetarian, biryani, butter chicken, chow mein, authentic flavors", metadataBase: new URL("https://maslakitchen.com"), - alternates: { - canonical: "https://maslakitchen.com" - }, - openGraph: { - title: "Masala Kitchen - Authentic Indian & Chinese Restaurant", description: "Taste authentic Indian delicacies and delicious Chinese cuisine prepared with finest ingredients. Order online or make a reservation.", url: "https://maslakitchen.com", siteName: "Masala Kitchen", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/indian-butter-chicken-black-bowl-wooden-table_123827-20634.jpg", alt: "Masala Kitchen - Authentic Indian & Chinese Food" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Masala Kitchen - Indian & Chinese Food", description: "Experience authentic flavors with our premium Indian and Chinese cuisine.", images: ["http://img.b2bpic.net/free-photo/indian-butter-chicken-black-bowl-wooden-table_123827-20634.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Masala Kitchen - Authentic Indian & Chinese Cuisine", description: "Experience authentic Indian delicacies and delicious Chinese cuisine prepared with the finest ingredients and traditional recipes."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +