From feb9d7feaa3c61df86f1d3f6ed38c5bf94044681 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 13:16:22 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 48 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 39 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6cbe480..acf6da4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_Sans } 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 { Open_Sans } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); + const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "HomeHub Kenya - Find Homes to Rent & Buy", + description: "Discover verified rental and sale listings across Kenya. Browse apartments, houses, and villas. Connect with trusted sellers and landlords securely.", + keywords: "property rental Kenya, apartments nairobi, houses for sale, real estate kenya, home rental", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "HomeHub Kenya - Your Real Estate Marketplace", + description: "Find your perfect home in Kenya. Browse thousands of verified listings for rent or sale.", + type: "website", + siteName: "HomeHub Kenya", + images: [ + { + url: "http://img.b2bpic.net/free-photo/aerial-view-beautiful-village-surrounded-by-nature_1268-15591.jpg", + alt: "HomeHub Kenya Real Estate Platform", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "HomeHub Kenya - Find Homes to Rent & Buy", + description: "Discover verified rental and sale listings across Kenya.", + images: ["http://img.b2bpic.net/free-photo/aerial-view-beautiful-village-surrounded-by-nature_1268-15591.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +59,9 @@ export default function RootLayout({ return ( - + {children}