From 3281b3ab56afb8e2bd2bf7717c528c86e8f94a27 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 03:27:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 69 +++++----------------------------------------- 1 file changed, 7 insertions(+), 62 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 55bafed..bf45e3d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "FuNtus Kids Play Area - Indoor Playground in Bengaluru", - description: "FuNtus is Bengaluru's premier safe, clean indoor playground with 8 play zones, birthday parties, and family-friendly activities. Book your visit today!", - keywords: "indoor playground Bengaluru, kids play area, birthday parties, safe play zones, family activities", - metadataBase: new URL("https://funtuskids.com"), - alternates: { - canonical: "https://funtuskids.com", - }, - openGraph: { - title: "FuNtus Kids Play Area - Where Imagination Runs Wild", - description: "Discover the joy of FuNtus - Bengaluru's safest indoor playground with engaging play zones for all ages.", - url: "https://funtuskids.com", - siteName: "FuNtus Kids Play Area", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/girl-enjoying-colorful-ball-pit_23-2148361508.jpg", - alt: "Kids playing at FuNtus Play Area", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "FuNtus Kids Play Area", - description: "Book your child's adventure at Bengaluru's safest indoor playground today!", - images: ["http://img.b2bpic.net/free-photo/girl-enjoying-colorful-ball-pit_23-2148361508.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "FuNtus Kids Play Area - Safe Indoor Play Zones in Bengaluru", description: "FuNtus Kids Play Area is Bengaluru's premier indoor playground with safe, engaging play zones for children of all ages. Book your visit today!"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}