diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 53e37f3..0b8770a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Zarah Food - Best Biryani in Melvisharam | Chicken & Beef", - description: "Authentic night-time biryani made with Seeraga Samba rice in Melvisharam. Call or WhatsApp to order. Ramzan special available. ₹180-200.", - keywords: "biryani near me, chicken biryani Melvisharam, beef biryani Ranipet, night biryani Vellore, Ramzan biryani, authentic biryani", - metadataBase: new URL("https://zarahfood.com"), - alternates: { - canonical: "https://zarahfood.com", - }, - openGraph: { - title: "Zarah Food - Authentic Biryani in Melvisharam", - description: "Best chicken & beef biryani with Seeraga Samba rice. Open nights especially during Ramzan.", - url: "https://zarahfood.com", - siteName: "Zarah Food", - type: "website", - images: [ - { - url: "https://zarahfood.com/og-biryani.jpg", - alt: "Zarah Food Authentic Biryani", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Zarah Food - Best Biryani in Melvisharam", - description: "Authentic chicken & beef biryani. Order via call or WhatsApp.", - images: ["https://zarahfood.com/twitter-biryani.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Zarah Food", description: "Authentic Night-Time Biryani in Melvisharam"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -