diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1cadc74..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +