9 Commits

Author SHA1 Message Date
09e2f9ee8f Merge version_3 into main
Merge version_3 into main
2026-03-05 06:07:33 +00:00
41ad7c6fc9 Update src/app/page.tsx 2026-03-05 06:07:29 +00:00
56a01f7582 Update src/app/layout.tsx 2026-03-05 06:07:29 +00:00
c38c6101db Merge version_2 into main
Merge version_2 into main
2026-03-05 06:05:39 +00:00
829ef9878b Update src/app/page.tsx 2026-03-05 06:05:35 +00:00
d8ce5d8805 Update src/app/layout.tsx 2026-03-05 06:05:34 +00:00
469a81f334 Merge version_1 into main
Merge version_1 into main
2026-03-05 05:57:18 +00:00
0472d91ffb Merge version_1 into main
Merge version_1 into main
2026-03-05 05:56:34 +00:00
4ce8c29a1a Merge version_1 into main
Merge version_1 into main
2026-03-05 05:55:19 +00:00
2 changed files with 17 additions and 41 deletions

View File

@@ -1,52 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } 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 geistSans = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Shaswat Chetna Sr Sec School | Quality Education in Ganaur, Haryana", description: "Top CBSE school in Ganaur offering quality education from Nursery to Class 12. Experienced teachers, modern facilities, and focus on character development. Admissions open now.", keywords: "school in Ganaur, best school near Garhi Haryana, CBSE school, senior secondary school, private school near Ganaur", metadataBase: new URL("https://shaswatchetnaschool.com"),
alternates: {
canonical: "https://shaswatchetnaschool.com"},
openGraph: {
title: "Shaswat Chetna Sr Sec School | Quality Education in Ganaur", description: "Trusted educational institution providing quality academics and holistic development for students age 3-18 in Ganaur, Haryana.", url: "https://shaswatchetnaschool.com", siteName: "Shaswat Chetna Sr Sec School", type: "website"},
twitter: {
card: "summary_large_image", title: "Shaswat Chetna Sr Sec School - Quality Education", description: "Admission open now at Shaswat Chetna Sr Sec School in Ganaur, Haryana. Call 090171 71769 or apply online."},
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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -91,10 +91,11 @@ export default function LandingPage() {
useInvertedBackground={false}
metricsAnimation="slide-up"
metrics={[
{ icon: Zap, label: "Strong Results", value: "95%" },
{ icon: Users, label: "Experienced Teachers", value: "50+" },
{ icon: Shield, label: "Safe Campus", value: "24/7" },
{ icon: Zap, label: "Strong Results", value: "95%" },
{ icon: Heart, label: "Values-Based Learning", value: "Core Focus" }
{ icon: Heart, label: "Values-Based Learning", value: "Core Focus" },
{ icon: CheckCircle, label: "CBSE Affiliation", value: "Verified" }
]}
/>
</div>
@@ -302,4 +303,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}