From 991eb064bd0ac2c62bf2c38f9aa3bf48b18f0296 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 22:37:59 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 +++++++------------------------------------- 1 file changed, 7 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8c1d92f..05c81cc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "../styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Clubhouse Restaurant & Gym | Lebanese Food & Fitness", description: "Experience authentic Lebanese cuisine and premium fitness facilities at Clubhouse. Reserve your table, join our gym, or call +234 (812) 345-6789 today.", keywords: "Lebanese restaurant, family dining, authentic food, gym membership, fitness center, restaurant with gym", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Clubhouse Restaurant & Gym", description: "Authentic Lebanese Flavors. Premium Dining & Fitness Experience.", type: "website", siteName: "Clubhouse", images: [ - { - url: "http://img.b2bpic.net/free-photo/decorated-wedding-reception-venue-with-view-sea-through-windows_637285-1001.jpg", alt: "Clubhouse Restaurant Interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Clubhouse Restaurant & Gym", description: "Authentic Lebanese cuisine and premium fitness facilities combined.", images: ["http://img.b2bpic.net/free-photo/azeri-set-mangal-cheese-vegetables-olives-pickles-top-view_141793-2322.jpg"], - }, -}; + title: "Clubhouse - Premium Dining & Fitness", description: "Experience authentic Lebanese flavors and premium gym facilities at Clubhouse"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}