diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b41738b..3b35294 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,44 @@ -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 "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; -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: "Hot Stone Kitchen | Premium Italian Pizza in Vellore", description: "Authentic thin-crust Italian pizzas, pasta, and European dishes near VIT Vellore. Reserve now or order online. Premium quality, student-friendly prices.", keywords: "italian pizza vellore, thin crust pizza, italian restaurant vellore, hot stone kitchen, vit vellore pizza, authentic italian food", metadataBase: new URL("https://hotstonekitchen.in"), - alternates: { - canonical: "https://hotstonekitchen.in"}, - openGraph: { - title: "Hot Stone Kitchen | Best Italian Pizza in Vellore", description: "Experience authentic Italian pizzas baked in a wood-fired oven, creamy pastas, and European dishes loved by VIT students and food enthusiasts.", url: "https://hotstonekitchen.in", siteName: "Hot Stone Kitchen", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-pizza-with-tomatoes_23-2148149173.jpg", alt: "Hot Stone Kitchen Premium Italian Pizza"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Hot Stone Kitchen | Premium Italian Pizza Vellore", description: "Authentic thin-crust pizzas, homemade pastas, and Italian classics. Reserve your table today.", images: ["http://img.b2bpic.net/free-photo/top-view-pizza-with-tomatoes_23-2148149173.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Hot Stone Kitchen - Authentic Italian Pizza in Vellore', + description: 'Experience authentic Italian pizzas, pastas, and European cuisine at Hot Stone Kitchen near VIT Vellore. Premium quality, wood-fired thin-crust pizzas loved by students and food enthusiasts.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - +