From 1d769976ef43b32ae332b7102fad6a89ebd7ecfa Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:42:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++++++++++++++---------------------------- 1 file changed, 20 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ac4610a..9f835de 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,40 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "YC CLUB - Kimberley's Premier Wine Lounge", description: "Experience exceptional wines and premium ambiance at YC CLUB, Kimberley's favourite wine bar. Book your table, host events, or enjoy a relaxed evening.", keywords: "wine lounge Kimberley, wine bar Northern Cape, premium wines, wine tasting, private events Kimberley", metadataBase: new URL("https://yc-club.co.za"), - alternates: { - canonical: "https://yc-club.co.za"}, - openGraph: { - title: "YC CLUB - Kimberley's Premier Wine Lounge", description: "Unwind. Connect. Celebrate. Experience exceptional wines in an elegantly curated space.", url: "https://yc-club.co.za", siteName: "YC CLUB", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-holding-flowers-happy_140725-163934.jpg", alt: "elegant wine lounge interior warm lighting"}, - ], - }, - twitter: { - card: "summary_large_image", title: "YC CLUB - Kimberley's Premier Wine Lounge", description: "Experience exceptional wines in an elegantly curated space.", images: ["http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-holding-flowers-happy_140725-163934.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "YC CLUB - Kimberley's Premier Wine Lounge", description: "Unwind. Connect. Celebrate. Experience exceptional wines in an elegantly curated space where every moment feels premium."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +