From beb9b11e5aff2a06fa5fcd1875c48190b57bf13f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:11:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 65 ++++++++++------------------------------------ 1 file changed, 13 insertions(+), 52 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1f902e8..9ef094a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,66 +1,28 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } 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"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Wedding & Event Venue Polokwane | Bird Sanctuary", - description: "Polokwane Bird Sanctuary - Premier wedding and event venue in Polokwane, Limpopo. Book your ceremony, reception, or celebration in our beautiful natural setting.", - keywords: "wedding venue Polokwane, event venue Limpopo, outdoor wedding, event space, ceremony venue, reception hall", - metadataBase: new URL("https://polokwanebirdsanctuary.co.za"), - alternates: { - canonical: "https://polokwanebirdsanctuary.co.za", - }, - openGraph: { - title: "Celebrate in Nature | Polokwane Bird Sanctuary", - description: "Discover Polokwane's most beautiful wedding and event venue surrounded by peaceful natural beauty.", - type: "website", - siteName: "Polokwane Bird Sanctuary", - images: [ - { - url: "http://img.b2bpic.net/free-photo/wedding-venue_1157-733.jpg", - alt: "Polokwane Bird Sanctuary Wedding Venue", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Wedding Venue | Polokwane Bird Sanctuary", - description: "Book your special celebration at Polokwane's natural event venue.", - images: ["http://img.b2bpic.net/free-photo/wedding-venue_1157-733.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Polokwane Bird Sanctuary - Wedding & Event Venue", description: "Celebrate your special day at Polokwane Bird Sanctuary, the perfect natural wedding and event venue in Limpopo, South Africa."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +