Update src/app/layout.tsx

This commit is contained in:
2026-03-11 17:41:30 +00:00
parent 275411e48e
commit 1196e24f8b

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +73,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}