From e2b4d778527919307ecbfeeaaa473703fea1b6fa Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 10:10:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 43 ++++++------------------------------------- 1 file changed, 6 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da7dc59..da74ab1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } 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"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "The White Lotus | Luxury Mobile Bartending", description: "Elevated mobile bartending service for weddings, private events, and corporate celebrations. Precision-crafted cocktails and refined hospitality.", keywords: "luxury bartending, mobile bar service, wedding bartender, cocktail service, private events, craft cocktails, professional mixologist", openGraph: { - title: "The White Lotus | Luxury Mobile Bartending", description: "Experience elevated mobile bartending for your unforgettable events.", siteName: "The White Lotus", type: "website"}, - twitter: { - card: "summary_large_image", title: "The White Lotus | Luxury Mobile Bartending", description: "Elevated mobile bartending for weddings, private events, and corporate celebrations."}, -}; + title: "The White Lotus - Luxury Mobile Bartending", description: "Elevated mobile bartending for unforgettable events"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}