diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fa4e5de..38620e4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,28 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Ananthagiri Ruchulu - Family Restaurant in Vikarabad | Biryani & Multicuisine", description: "Best family restaurant in Vikarabad with delicious biryani, chicken majestic & multicuisine options. Fresh food, hygienic kitchen, dine-in & delivery. ⭐ 4.2 Rating", keywords: "restaurant Vikarabad, biryani, family restaurant, multicuisine, food delivery, Ananthagiri", metadataBase: new URL("https://ananthagiri-ruchulu.com"), - alternates: { - canonical: "https://ananthagiri-ruchulu.com"}, - openGraph: { - title: "Ananthagiri Ruchulu - Family Restaurant in Vikarabad", description: "Delicious multicuisine food for families. Biryani, chicken majestic & more. Call or WhatsApp to order!", url: "https://ananthagiri-ruchulu.com", siteName: "Ananthagiri Ruchulu", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/family-having-indian-food_53876-20449.jpg", alt: "Ananthagiri Ruchulu Restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Ananthagiri Ruchulu - Best Family Restaurant in Vikarabad", description: "Order now via WhatsApp or call us! Delicious biryani & multicuisine food.", images: ["http://img.b2bpic.net/free-photo/family-having-indian-food_53876-20449.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Ananthagiri Ruchulu - Family Restaurant in Vikarabad", description: "Delicious Multicuisine Food for Families in Vikarabad. Great ambience, fresh food, and affordable prices. Order now online or visit us!"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +