diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d99b3f..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Contact Jumanji | Phone, Hours & Location", - description: "Get in touch with Jumanji. Hours, phone number, location, and easy booking for family visits and special events.", - keywords: "family entertainment center, arcade games, birthday party venue, kids entertainment, local fun, affordable entertainment", - metadataBase: new URL("https://jumanji-entertainment.com"), - alternates: { - canonical: "https://jumanji-entertainment.com/contact-us", - }, - openGraph: { - title: "Contact Jumanji - Family Entertainment Center", - description: "Get in touch with Jumanji. Hours, phone number, location, and easy booking for family visits and special events.", - url: "https://jumanji-entertainment.com/contact-us", - siteName: "Jumanji", - type: "website", - images: [ - { - url: "https://jumanji-entertainment.com/og-image.jpg", - alt: "Jumanji Entertainment Center", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Contact Jumanji - Family Entertainment", - description: "Get in touch with Jumanji for family visits and special events.", - images: ["https://jumanji-entertainment.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -