From a79591ef324df3dd79378f8187cb897cd38dbf9a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 05:31:06 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 68 ++++++++++++++++++---------------------------- 1 file changed, 26 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 01c2488..f6b7d83 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,45 @@ 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"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; 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"], -}); - export const metadata: Metadata = { - title: "The Ora Cafe - Bhilwara's Premier Rooftop Cafe & Restaurant", description: "Discover The Ora Cafe in Bhilwara - your favorite rooftop hangout with delicious fusion food, cozy vibes, and Instagram-worthy ambience. Reserve a table today.", keywords: "cafe in Bhilwara, best cafe Bhilwara, rooftop cafe, restaurant Bhilwara, hangout place Bhilwara, The Ora Cafe", metadataBase: new URL("https://theoracafe.com"), - alternates: { - canonical: "https://theoracafe.com" - }, - openGraph: { - title: "The Ora Cafe - Bhilwara's Favorite Rooftop Cafe", description: "Experience premium dining at The Ora Cafe. Rooftop seating, creative fusion food, and the perfect vibe for friends and family.", url: "https://theoracafe.com", siteName: "The Ora Cafe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/friends-having-nice-barbeque-together_23-2149271952.jpg", alt: "The Ora Cafe rooftop dining experience" - } - ] - }, - twitter: { - card: "summary_large_image", title: "The Ora Cafe - Rooftop Dining in Bhilwara", description: "Join us for an unforgettable rooftop dining experience. Book your table now!", images: ["http://img.b2bpic.net/free-photo/friends-having-nice-barbeque-together_23-2149271952.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "The Ora Cafe | Bhilwara's Favorite Rooftop Cafe", description: "Experience The Ora Cafe - Bhilwara's most beloved rooftop dining destination with fusion cuisine, cozy vibes, and stunning views."}; export default function RootLayout({ - children -}: Readonly<{ + children, +}: { children: React.ReactNode; -}>) { +}) { return ( - - + +