Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 14:16:47 +00:00
2 changed files with 15 additions and 40 deletions

View File

@@ -1,52 +1,28 @@
import type { Metadata } from "next";
import { Halant } 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 halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
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: "Rentinly - Rent Tools from Neighbors | Community Marketplace", description: "Access thousands of affordable tools from trusted neighbors in your area. Rent, share, and build community with Rentinly's peer-to-peer tool rental marketplace.", keywords: "tool rental, peer-to-peer marketplace, DIY tools, community sharing, affordable equipment, local rentals", metadataBase: new URL("https://rentinly.com"),
alternates: {
canonical: "https://rentinly.com"
},
openGraph: {
title: "Rentinly - Rent Tools. Share Skills. Build Community.", description: "Join 5,000+ DIY enthusiasts renting tools from neighbors and earning income by sharing equipment.", url: "https://rentinly.com", siteName: "Rentinly", type: "website", images: [{
url: "http://img.b2bpic.net/free-photo/side-view-people-garage-sale_23-2150574535.jpg", alt: "Rentinly community marketplace"
}]
},
twitter: {
card: "summary_large_image", title: "Rentinly - Rent Tools. Share Skills. Build Community.", description: "Access affordable tools from trusted neighbors in your area.", images: ["http://img.b2bpic.net/free-photo/side-view-people-garage-sale_23-2150574535.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -120,15 +120,15 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
products={[
{
id: "1", brand: "Rentinly", name: "Local Marketplace", price: "Browse Free", rating: 5,
id: "1", brand: "Rentinly", name: "Save Up to 50% vs. Buying New", price: "Browse Free", rating: 5,
reviewCount: "2.3k reviews", imageSrc: "http://img.b2bpic.net/free-photo/we-bought-new-house_637285-12513.jpg?_wi=2"
},
{
id: "2", brand: "Rentinly", name: "Trust & Safety", price: "Secure Always", rating: 5,
id: "2", brand: "Rentinly", name: "Rent with Complete Peace of Mind", price: "Secure Always", rating: 5,
reviewCount: "1.8k reviews", imageSrc: "http://img.b2bpic.net/free-photo/courier-delivering-groceries-home_23-2149738007.jpg?_wi=2"
},
{
id: "3", brand: "Rentinly", name: "Educational Blog", price: "Learn Free", rating: 5,
id: "3", brand: "Rentinly", name: "Get Expert DIY Guidance", price: "Learn Free", rating: 5,
reviewCount: "980 reviews", imageSrc: "http://img.b2bpic.net/free-photo/person-using-tools-create-carpentry-word_23-2148640311.jpg?_wi=1"
}
]}