Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-03-21 18:27:05 +00:00
3 changed files with 52 additions and 14 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +77,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -139,7 +139,7 @@ export default function HomePage() {
price: "$2,500/mo",
rating: 5,
reviewCount: "48",
imageSrc: "http://img.b2bpic.net/free-photo/blue-print-house-with-succulent-plant-calculator_23-2148393115.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blue-print-house-with-succulent-plant-calculator_23-2148393115.jpg?_wi=1",
imageAlt: "Modern downtown loft apartment",
},
{
@@ -149,7 +149,7 @@ export default function HomePage() {
price: "$3,200/mo",
rating: 5,
reviewCount: "32",
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-shaking-hands-office_23-2147668800.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-shaking-hands-office_23-2147668800.jpg?_wi=1",
imageAlt: "Spacious family home with yard",
},
{
@@ -159,7 +159,7 @@ export default function HomePage() {
price: "$5,500/mo",
rating: 5,
reviewCount: "67",
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-with-drink-near-snacks-scissors_23-2147888747.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-with-drink-near-snacks-scissors_23-2147888747.jpg?_wi=1",
imageAlt: "Luxurious beachfront villa",
},
]}

View File

@@ -96,7 +96,7 @@ export default function PropertiesPage() {
price: "$2,500/mo",
rating: 5,
reviewCount: "48",
imageSrc: "http://img.b2bpic.net/free-photo/blue-print-house-with-succulent-plant-calculator_23-2148393115.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blue-print-house-with-succulent-plant-calculator_23-2148393115.jpg?_wi=2",
imageAlt: "Modern downtown loft apartment",
},
{
@@ -106,7 +106,7 @@ export default function PropertiesPage() {
price: "$3,200/mo",
rating: 5,
reviewCount: "32",
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-shaking-hands-office_23-2147668800.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-shaking-hands-office_23-2147668800.jpg?_wi=2",
imageAlt: "Spacious family home with yard",
},
{
@@ -116,7 +116,7 @@ export default function PropertiesPage() {
price: "$5,500/mo",
rating: 5,
reviewCount: "67",
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-with-drink-near-snacks-scissors_23-2147888747.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-with-drink-near-snacks-scissors_23-2147888747.jpg?_wi=2",
imageAlt: "Luxurious beachfront villa",
},
]}