Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 18:11:13 +00:00
2 changed files with 30 additions and 57 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1428,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -94,19 +94,31 @@ export default function HomePage() {
{
id: 1,
tag: "Natural Beauty", title: "Beautiful Surroundings", subtitle: "Surrounded by nature's finest elements", description:
"Our sanctuary offers a peaceful, naturally beautiful setting perfect for creating unforgettable memories. The lush green environment provides stunning natural photography backdrops and a serene atmosphere for your celebration.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-bench-surrounded-by-trees-side-lake_181624-46497.jpg?_wi=2", imageAlt: "Natural garden setting"},
"Our sanctuary offers a peaceful, naturally beautiful setting perfect for creating unforgettable memories. The lush green environment provides stunning natural photography backdrops and a serene atmosphere for your celebration.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-bench-surrounded-by-trees-side-lake_181624-46497.jpg?_wi=2", imageAlt: "Natural garden setting", buttons: [
{ text: "Learn More", href: "/packages" },
],
},
{
id: 2,
tag: "Venue Options", title: "Indoor & Outdoor", subtitle: "Flexible spaces for any celebration", description:
"Choose between our beautiful outdoor ceremony grounds or intimate indoor spaces. Whether you envision an outdoor celebration under the sky or an elegant indoor reception, we have the perfect setting for your event.", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-hall-with-turquoise-chairs-french-windows-navy-coloured-ceiling_140725-8448.jpg?_wi=2", imageAlt: "Indoor event facility"},
"Choose between our beautiful outdoor ceremony grounds or intimate indoor spaces. Whether you envision an outdoor celebration under the sky or an elegant indoor reception, we have the perfect setting for your event.", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-hall-with-turquoise-chairs-french-windows-navy-coloured-ceiling_140725-8448.jpg?_wi=2", imageAlt: "Indoor event facility", buttons: [
{ text: "View Packages", href: "/packages" },
],
},
{
id: 3,
tag: "Convenient Location", title: "Easy Access", subtitle: "Centrally located in Polokwane", description:
"Conveniently situated in Polokwane with easy access from CBD and surrounding areas. Our central location makes it effortless for guests to attend your celebration without lengthy travel.", imageSrc: "http://img.b2bpic.net/free-photo/map-car_1160-57.jpg", imageAlt: "Location map"},
"Conveniently situated in Polokwane with easy access from CBD and surrounding areas. Our central location makes it effortless for guests to attend your celebration without lengthy travel.", imageSrc: "http://img.b2bpic.net/free-photo/map-car_1160-57.jpg", imageAlt: "Location map", buttons: [
{ text: "Get Directions", href: "/contact" },
],
},
{
id: 4,
tag: "Flexibility", title: "Customizable Events", subtitle: "Perfect for any occasion", description:
"From intimate weddings to large corporate events, birthday celebrations to traditional ceremonies, our versatile venue can be customized to suit your unique vision and requirements.", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-floral-centerpiece-wedding-reception_637285-5611.jpg?_wi=2", imageAlt: "Event setup flexibility"},
"From intimate weddings to large corporate events, birthday celebrations to traditional ceremonies, our versatile venue can be customized to suit your unique vision and requirements.", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-floral-centerpiece-wedding-reception_637285-5611.jpg?_wi=2", imageAlt: "Event setup flexibility", buttons: [
{ text: "Explore Options", href: "/contact" },
],
},
]}
/>
</div>
@@ -196,4 +208,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}