From 1ee366c54f3425f2456607a252cc57c139142022 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 08:43:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 09ec774..83cc07a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,28 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], +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: "Hungry Daddy - Pan-Asian Restaurant in Guntur | Best Cafe", description: "Hungry Daddy offers Pan-Asian cuisines, spacious dining, great ambience & fast service in Guntur. Order delivery, reserve table online. 4.1★ rating. Call 091217 87980.", keywords: "Pan-Asian restaurant Guntur, best cafe Guntur, Thai food, sushi, Indian tandoor, Chinese cuisine, restaurant Guntur, reservation booking", metadataBase: new URL("https://hungrydaddyguntur.com"), - alternates: { - canonical: "https://hungrydaddyguntur.com"}, - openGraph: { - title: "Hungry Daddy - Pan-Asian Restaurant in Guntur", description: "Experience authentic Pan-Asian cuisines in Guntur. Spacious cafe, great ambience, fast service. Book your table online or call today.", url: "https://hungrydaddyguntur.com", siteName: "Hungry Daddy", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/bowl-thai-udon-noodles-with-nuts-broccoli-lemon-mint-toppings_23-2148093213.jpg", alt: "Hungry Daddy Pan-Asian Dishes"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Hungry Daddy - Best Pan-Asian Restaurant in Guntur", description: "Discover authentic Pan-Asian flavors, spacious ambience, and exceptional service at Hungry Daddy.", images: ["http://img.b2bpic.net/free-photo/bowl-thai-udon-noodles-with-nuts-broccoli-lemon-mint-toppings_23-2148093213.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Hungry Daddy", description: "Pan-Asian restaurant in Guntur"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +