Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 829ef9878b | |||
| d8ce5d8805 | |||
| 469a81f334 | |||
| 0472d91ffb | |||
| 4ce8c29a1a |
@@ -1,52 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geistSans = Geist({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1414,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -94,7 +94,8 @@ export default function LandingPage() {
|
|||||||
{ icon: Users, label: "Experienced Teachers", value: "50+" },
|
{ icon: Users, label: "Experienced Teachers", value: "50+" },
|
||||||
{ icon: Shield, label: "Safe Campus", value: "24/7" },
|
{ icon: Shield, label: "Safe Campus", value: "24/7" },
|
||||||
{ icon: Zap, label: "Strong Results", value: "95%" },
|
{ 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>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user