Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-05 09:39:25 +00:00

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } 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 raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Nirmala Convent English Medium School | Quality Education with Values", description: "Nirmala Convent School offers quality education with strong moral values in a nurturing, disciplined environment. Academic excellence, character formation, and holistic student development.", keywords: "school, education, admissions, academic excellence, character formation, Balehonnur, Karnataka", metadataBase: new URL("https://nirmalconventschool.edu"),
alternates: {
canonical: "https://nirmalconventschool.edu"},
openGraph: {
title: "Nirmala Convent English Medium School", description: "Quality Education with Strong Moral Values - Academic Excellence, Character Formation & Holistic Development", url: "https://nirmalconventschool.edu", siteName: "Nirmala Convent School", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg", alt: "Nirmala Convent School Campus"},
],
},
twitter: {
card: "summary_large_image", title: "Nirmala Convent English Medium School", description: "Quality Education with Strong Moral Values", images: [
"http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Nirmala Convent School", description: "Quality Education with Strong Moral Values - Nirmala Convent English Medium School"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}