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}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index a0842a6..4b22c6b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -47,11 +47,14 @@ export default function HomePage() {
description="FuNtus Kids Play Area is Bengaluru's premier indoor playground, featuring safe, engaging play zones designed for children of all ages. Book a visit today and watch your child have the time of their life!"
avatars={[
{
- src: "http://img.b2bpic.net/free-photo/family-resting-home_1098-838.jpg", alt: "Happy Parent 1"},
+ src: "http://img.b2bpic.net/free-photo/family-resting-home_1098-838.jpg", alt: "Happy Parent 1"
+ },
{
- src: "http://img.b2bpic.net/free-photo/kids-rage-siblings-spend-time-together-hug-laugh_72229-622.jpg", alt: "Happy Parent 2"},
+ src: "http://img.b2bpic.net/free-photo/kids-rage-siblings-spend-time-together-hug-laugh_72229-622.jpg", alt: "Happy Parent 2"
+ },
{
- src: "http://img.b2bpic.net/free-photo/brother-sister-are-playing-together-two-children-playing-with-wooden-airplane-outdoor_146671-14973.jpg", alt: "Happy Parent 3"},
+ src: "http://img.b2bpic.net/free-photo/brother-sister-are-playing-together-two-children-playing-with-wooden-airplane-outdoor_146671-14973.jpg", alt: "Happy Parent 3"
+ },
]}
avatarText="Trusted by 5000+ Happy Families"
buttons={[
@@ -67,6 +70,7 @@ export default function HomePage() {
@@ -183,25 +188,33 @@ export default function HomePage() {
{
title: "Contact Info", items: [
{
- label: "📍 Bangalore Tech Park, Bengaluru", href: "#"},
+ label: "📍 Bangalore Tech Park, Bengaluru", href: "#"
+ },
{
- label: "📞 +91-98765-43210", href: "tel:+919876543210"},
+ label: "📞 +91-98765-43210", href: "tel:+919876543210"
+ },
{
- label: "📧 info@funtuskids.com", href: "mailto:info@funtuskids.com"},
+ label: "📧 info@funtuskids.com", href: "mailto:info@funtuskids.com"
+ },
{
- label: "🕒 Mon-Sun: 10AM-8PM", href: "#"},
+ label: "🕒 Mon-Sun: 10AM-8PM", href: "#"
+ },
],
},
{
title: "Follow Us", items: [
{
- label: "Facebook", href: "https://facebook.com/funtuskids"},
+ label: "Facebook", href: "https://facebook.com/funtuskids"
+ },
{
- label: "Instagram", href: "https://instagram.com/funtuskids"},
+ label: "Instagram", href: "https://instagram.com/funtuskids"
+ },
{
- label: "YouTube", href: "https://youtube.com/funtuskids"},
+ label: "YouTube", href: "https://youtube.com/funtuskids"
+ },
{
- label: "Twitter", href: "https://twitter.com/funtuskids"},
+ label: "Twitter", href: "https://twitter.com/funtuskids"
+ },
],
},
]}
@@ -210,4 +223,4 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}