From a7eff0624be793ee7e47c361dd9760fb0508d0e9 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 05:10:32 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..5c9a7b4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,32 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Paintasy Face and Body Art - Professional Event Entertainment", + description: "Professional face painting and body art services for parties, festivals, and corporate events. Transform your event with creativity and color. Book your entertainment today.", +}; export default function RootLayout({ children, @@ -31,7 +36,9 @@ export default function RootLayout({ return ( - + {children}