Merge version_2 into main #4
@@ -1,61 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat, Inter } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "New Era Public School - Quality English Medium Education in Khammam",
|
||||
description: "New Era Public School offers excellent English medium education in Kaviraj Nagar, Khammam with 4.1★ rating. Modern facilities, expert faculty, and holistic development for students.",
|
||||
keywords: "school, Khammam, English medium, admissions, education, NEPS",
|
||||
openGraph: {
|
||||
title: "New Era Public School - Excellence in Education",
|
||||
description: "Empowering minds, shaping futures with world-class education facilities",
|
||||
siteName: "New Era Public School",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/school-building-background_1284-52250.jpg",
|
||||
alt: "New Era Public School Campus",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "New Era Public School Khammam",
|
||||
description: "Quality English Medium Education with 4.1★ Rating",
|
||||
images: ["http://img.b2bpic.net/free-vector/school-building-background_1284-52250.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "New Era Public School", description: "New Era Public School - Empowering minds, shaping futures"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1423,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -93,7 +93,7 @@ export default function HomePage() {
|
||||
tag="About Us"
|
||||
tagIcon={BookOpen}
|
||||
title="Nurturing Excellence Since Establishment"
|
||||
description="New Era Public School is committed to providing world-class education combining traditional values with modern pedagogy. Our mission is to develop confident, compassionate, and capable students equipped for global success. Located in the heart of Kaviraj Nagar, Khammam, we pride ourselves on our state-of-the-art facilities and dedicated faculty."
|
||||
description="New Era Public School is committed to providing world-class education combining traditional values with modern pedagogy. Our mission is to develop confident, compassionate, and capable students equipped for global success. Located in the heart of Kaviraj Nagar, Khammam, we pride ourselves on our state-of-the-art facilities and dedicated faculty. Ready to join us? Explore our admissions process or request a campus tour to experience excellence firsthand."
|
||||
metrics={[
|
||||
{ value: "4.1★", title: "Parent Satisfaction Rating" },
|
||||
{ value: "73+", title: "Verified Reviews" },
|
||||
@@ -227,4 +227,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user