From 8a4bfefbe447fa802a5b6cea06946cd0f2d24875 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 14:40:35 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 37 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6cbe480..b06e9e7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,54 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_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 { Open_Sans } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); + const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "PartyHost - Host & Discover Amazing Parties", + description: "PartyHost makes party hosting easy. Discover venues, manage guests, coordinate events, and celebrate together. Join 50K+ party organizers.", + keywords: "party hosting, event planning, venue booking, party management, event coordination, celebration platform", + metadataBase: new URL("https://partyhost.com"), + alternates: { + canonical: "https://partyhost.com", + }, + openGraph: { + title: "PartyHost - Host & Discover Amazing Parties", + description: "PartyHost makes party hosting easy. Discover venues, manage guests, coordinate events, and celebrate together.", + type: "website", + siteName: "PartyHost", + url: "https://partyhost.com", + }, + twitter: { + card: "summary_large_image", + title: "PartyHost - Host & Discover Amazing Parties", + description: "PartyHost makes party hosting easy. Discover venues, manage guests, coordinate events, and celebrate together.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +57,9 @@ export default function RootLayout({ return ( - + {children}