From af1c3cb3245422da1fa9119c3456fcea099e128d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 00:21:15 +0000 Subject: [PATCH 1/6] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 39 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..048f5a5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,53 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Mulish, Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Mulish } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Ndemoongela African Safari - Premium Customized Tours & Wildlife Experiences", + description: "Discover unforgettable African safari adventures in South Africa and Namibia. Customized tours, student programs, volunteer opportunities, and VIP luxury experiences with expert guides.", + keywords: "African safari, wildlife tours, South Africa safari, Namibia tours, customized itineraries, student tours, volunteer programs, luxury safari, safari guide", + metadataBase: new URL("https://ndemoongela-african-safari.com"), + alternates: { + canonical: "https://ndemoongela-african-safari.com", + }, + openGraph: { + title: "Ndemoongela African Safari - Premium Customized Tours & Wildlife Experiences", + description: "Discover unforgettable African safari adventures in South Africa and Namibia. Customized tours, student programs, volunteer opportunities, and VIP luxury experiences with expert guides.", + url: "https://ndemoongela-african-safari.com", + siteName: "Ndemoongela African Safari", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/group-elephants-tsavo-east-national-park-kenya-africa_181624-20979.jpg", + alt: "African Safari Experience", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Ndemoongela African Safari - Premium Tours & Wildlife Experiences", + description: "Experience unforgettable African adventures with customized safaris, wildlife tours, and premium service.", + images: ["http://img.b2bpic.net/free-photo/group-elephants-tsavo-east-national-park-kenya-africa_181624-20979.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +56,9 @@ export default function RootLayout({ return ( - + {children}