diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590a34c..200400b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_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 { Public_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "RentHome - Find & Rent Beautiful Houses Near You", + description: "Discover thousands of rental properties including apartments, houses, and villas. Simple search, secure rentals, trusted landlords. Start your search today!", + keywords: "house rental, apartment rental, property rental, rent homes near me, rental listings", + robots: { + index: true, + follow: true, + }, + metadataBase: new URL("https://renthome.com"), + alternates: { + canonical: "https://renthome.com", + }, + openGraph: { + title: "RentHome - Find Your Perfect Rental Home", + description: "Browse and rent beautiful homes in your area. Simple, secure, and trusted rental platform.", + type: "website", + siteName: "RentHome", + images: [ + { + url: "http://img.b2bpic.net/free-photo/smiling-couple-with-tablet-table_23-2147744882.jpg", + alt: "Featured rental properties", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "RentHome - Find Your Perfect Rental Home", + description: "Browse and rent beautiful homes in your area. Simple, secure, and trusted rental platform.", + images: ["http://img.b2bpic.net/free-photo/smiling-couple-with-tablet-table_23-2147744882.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}