diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5dab8a6..4fab74c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Section 8 Assistant - Real Estate Investment Platform", - description: "The complete platform for beginner Section 8 real estate investors. Browse verified properties, analyze ROI with real HUD data, manage portfolios, hire property managers, and track tenants.", - keywords: "Section 8 investing, real estate, housing choice voucher, HUD, property investment, rental income, property manager, beginner friendly", - metadataBase: new URL("https://section8assistant.com"), - alternates: { - canonical: "https://section8assistant.com", - }, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Section 8 Assistant - The Beginner-Friendly Investor Platform", - description: "Start investing in Section 8 rental properties today. Real HUD data, transparent fees, and expert compliance guidance.", - url: "https://section8assistant.com", - siteName: "Section8Assistant", - type: "website", - images: [ - { - url: "https://section8assistant.com/og-image.png", - alt: "Section 8 Assistant Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Section 8 Assistant - Invest in Real Estate with Confidence", - description: "The all-in-one platform for Section 8 rental property investing.", - images: ["https://section8assistant.com/twitter-image.png"], - }, -}; + title: "Section8Assistant - Section 8 Real Estate Investing Platform", description: "The complete platform for beginner Section 8 real estate investors. Browse verified rental properties, analyze ROI with real HUD data, manage portfolios, hire property managers, and track tenants."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}