1 Commits

Author SHA1 Message Date
22c01ae724 Update src/app/page.tsx 2026-03-05 11:02:32 +00:00

View File

@@ -1,20 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "@/styles/globals.css";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({ subsets: ["latin"] });
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 dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Krishna School of Excellence | Preschool in Mangolpuri, Delhi", description: "A nurturing preschool in Mangolpuri, Delhi for children aged 2-7. Safe learning environment, experienced teachers, and play-based curriculum."};
title: "Krishna School of Excellence | Best Preschool in Mangolpuri, Delhi", description: "Trusted preschool in Mangolpuri offering play-way learning, safe environment, and experienced teachers for ages 2-7. Admissions open now.", keywords: "preschool in mangolpuri, best preschool mangolpuri, play school near me, kindergarten mangolpuri, nursery school delhi, early childhood education", metadataBase: new URL("https://krishnaschool.com"),
openGraph: {
title: "Krishna School of Excellence - Trusted Preschool in Mangolpuri", description: "Give your child the best start with our nurturing preschool. Safe, caring, experienced teachers. Admissions open!", url: "https://krishnaschool.com", siteName: "Krishna School of Excellence", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/happy-kids-elementary-school_53876-46933.jpg", alt: "Krishna School Classroom"
}
]
},
twitter: {
card: "summary_large_image", title: "Krishna School of Excellence - Preschool in Mangolpuri", description: "Trusted preschool with experienced teachers and safe learning environment for ages 2-7.", images: ["http://img.b2bpic.net/free-photo/happy-kids-elementary-school_53876-46933.jpg"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({
children,
}: {
}: Readonly<{
children: React.ReactNode;
}) {
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1382,6 +1423,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}