diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2cb9617..a860921 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "MAAC Jaipur - 3D Animation & VFX Training Institute", description: "Master 3D animation, VFX, and graphic design at MAAC Jaipur. Industry-standard training with 95% placement rate. Enroll in premium certification programs today.", keywords: "3D animation course Jaipur, VFX training Jaipur, graphic design institute, Maya animation training, animation college Rajasthan", metadataBase: new URL("https://maac-jaipur.com"), - alternates: { - canonical: "https://maac-jaipur.com" - }, - openGraph: { - title: "MAAC Jaipur - Premier 3D Animation & VFX Education", description: "Transform your creative passion into a professional career with world-class animation training.", type: "website", url: "https://maac-jaipur.com", siteName: "MAAC Jaipur", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkRTQ59fmYwDfIIxVKo0176hbp/a-vibrant-3d-animation-studio-workspace--1773134677962-5259add1.png", alt: "MAAC Animation Studio" - } - ] - }, - twitter: { - card: "summary_large_image", title: "MAAC Jaipur - 3D Animation Institute", description: "Master animation, VFX, and design with industry experts", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkRTQ59fmYwDfIIxVKo0176hbp/a-vibrant-3d-animation-studio-workspace--1773134677962-5259add1.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "MAAC - India's Premier 3D Animation & VFX Institute", description: "Maya Academy of Advanced Cinematics offers comprehensive training in 3D animation, VFX, graphic design, and architectural visualization. Join India's leading animation education institute."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +