From 1196e24f8bca4e1dbd3bf223eaa88d41e10e6a58 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 17:41:30 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..4b8fadd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } 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 { Raleway } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Festivity Factory - Premium Party Supplies & Balloon Styling in Naples", + description: "Luxury party supplies, bespoke balloon installations, and curated event styling. Sophisticated celebrations for discerning clients in Vomero, Naples.", + keywords: "party supplies Naples, balloon styling, event decoration, luxury celebration, bespoke event design, Vomero", + openGraph: { + title: "Festivity Factory - The Atelier of Celebration", + description: "Crafting unforgettable moments with elegance. Premium balloon styling and curated party collections.", + siteName: "Festivity Factory", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/blonde-girl-posing-new-year-party_23-2147981808.jpg", + alt: "Festivity Factory - Elegant celebration styling", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Festivity Factory - Premium Party Styling", + description: "Elegant balloon installations and bespoke event curation in Naples.", + images: ["http://img.b2bpic.net/free-photo/blonde-girl-posing-new-year-party_23-2147981808.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}