diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9337a5c..f040530 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1436 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Trupti Dance Academy | Premium Dance & Fitness in Melissa, TX", - description: "Join Trupti Dance Academy in Melissa, Texas for BollyX fitness and Bollywood dance classes for kids, teens, and adults. Premium dance instruction with a supportive community.", - keywords: "dance academy, Bollywood dance, BollyX fitness, dance classes Melissa Texas, kids dance, adult dance fitness", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Trupti Dance Academy | Dance & Fitness", - description: "Premium Bollywood dance and fitness classes for all ages in Melissa, Texas. Join our vibrant dance community today.", - type: "website", - siteName: "Trupti Dance Academy", - images: [ - { - url: "http://img.b2bpic.net/free-photo/festive-girl-posing-star-light_23-2147651829.jpg", - alt: "Trupti Dance Academy", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Trupti Dance Academy | Dance & Fitness", - description: "Join our Bollywood dance and fitness classes in Melissa, Texas", - images: ["http://img.b2bpic.net/free-photo/festive-girl-posing-star-light_23-2147651829.jpg"], - }, -}; + title: "Trupti Dance Academy", description: "Join Trupti Dance Academy in Melissa, Texas for BollyX fitness and Bollywood dance classes for kids, teens, and adults."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -