From 7a04a611103558aa2ed151fc4ad77bcc3b6ac5e2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 21:31:40 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1418 +------------------------------------------- 1 file changed, 18 insertions(+), 1400 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b8d9bee..b5ce524 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,40 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 "./styles/globals.css"; +import { ServiceWrapper } from "@/providers/service/ServiceWrapper"; +import { Tag } from "@/components/common/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - export const metadata: Metadata = { - title: "Classroom Cafe & Bar | Premium Lounge in DLF Galleria", description: "Experience luxury dining and affordable premium drinks at Classroom Cafe & Bar. Perfect for celebrations, office parties, and friends hangouts in DLF Galleria.", keywords: "cafe bar lounge DLF Galleria premium drinks appetizers reservation", openGraph: { - title: "Classroom Cafe & Bar", description: "Where Good Food Meets Great Nights — Premium Lounge Experience", type: "website", siteName: "Classroom Cafe & Bar", images: [ - { - url: "http://img.b2bpic.net/free-photo/craft-beer-booze-brew-alcohol-celebrate-refreshment_53876-46913.jpg", alt: "Classroom Cafe & Bar Lounge Interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Classroom Cafe & Bar", description: "Premium lounge with delicious food, affordable drinks, and unforgettable vibes", images: ["http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-holding-drink_23-2149295235.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Classroom Cafe & Bar - Premium Lounge Experience", description: "Experience premium lounge dining with delicious food, affordable drinks, and unforgettable vibes at Classroom Cafe & Bar in DLF Galleria Mall."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - +