diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 24a6811..1564797 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,32 +1,1423 @@ import type { Metadata } from "next"; -import { Geist } from "next/font/google"; +import { Mulish } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const geist = Geist({ - variable: "--font-geist", subsets: ["latin"], +const mulish = Mulish({ + variable: "--font-mulish", + subsets: ["latin"], +}); + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], }); export const metadata: Metadata = { - title: "PawsHome - Pet Adoption Platform", description: "Find your perfect companion and give a loving animal a second chance at happiness through PawsHome's trusted adoption platform."}; + title: "PawsHome - Animal Adoption & Rescue Platform", + description: "Find your perfect pet companion through PawsHome. Browse 2,500+ adoptable animals from 150+ partner shelters. Simple, safe, and transparent adoption process.", + keywords: "animal adoption, pet rescue, dog adoption, cat adoption, animal shelter, pet rescue platform, adopt a pet", + metadataBase: new URL("https://pawshome.com"), + alternates: { + canonical: "https://pawshome.com", + }, + openGraph: { + title: "PawsHome - Adopt Your Perfect Pet", + description: "Connect with your perfect animal companion through our trusted adoption platform.", + siteName: "PawsHome", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "PawsHome - Adopt a Pet Today", + description: "Find adoptable animals in your area. Give a rescue animal a loving home.", + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + {children} +