diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8ad0982..273e249 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,22 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Delhi Mithaiwala Veg Bakery & Chat - Fresh Sweets & Snacks Utnur", description: "Authentic vegetarian bakery & chat shop in Utnur serving fresh sweets, pastries, and traditional snacks. Family-friendly dine-in. 4.2★ rated. Call 070954 76581.", keywords: "veg bakery Utnur, Indian sweets, badam milk, chat shop, vegetarian bakery, mithai shop, Telangana", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Delhi Mithaiwala - Authentic Veg Bakery & Chat", description: "Fresh homemade sweets, bakery items, and traditional snacks with premium quality and hygiene standards.", url: "https://delhimithaiwala.local", siteName: "Delhi Mithaiwala Veg Bakery & Chat", type: "website"}, + title: 'Delhi Mithaiwala', + description: 'Authentic Veg Bakery & Chat Shop', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}