|
|
|
|
@@ -1,57 +1,27 @@
|
|
|
|
|
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 { Outfit, Poppins } 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 outfit = Outfit({
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
display: "swap"});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const poppins = Poppins({
|
|
|
|
|
weight: ["400", "500", "600", "700"],
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
display: "swap"});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "The Educators AlSaade Campus - Quality Education in Khanpur", description: "Join 1,000+ families at The Educators AlSaade Campus. Trusted by Khanpur for excellence in academics, modern facilities, and caring faculty. 4.1★ rating. Enroll today.", keywords: "school in Khanpur, quality education, AlSaade Campus, enrollment, academics, faculty, student development", metadataBase: new URL("https://educators-alsaade.edu.pk"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://educators-alsaade.edu.pk"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "The Educators AlSaade Campus - Quality Education, Trusted by Families", description: "Discover why 1,000+ families trust The Educators AlSaade Campus for their children's education.", url: "https://educators-alsaade.edu.pk", siteName: "The Educators AlSaade Campus", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/portrait-businesswoman-walking-street-empty-city-center-holding-folder-with-work_1258-194078.jpg", alt: "modern school campus building exterior daytime"},
|
|
|
|
|
],
|
|
|
|
|
type: "website"},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "The Educators AlSaade Campus - Quality Education in Khanpur", description: "Join 1,000+ families at The Educators AlSaade Campus. Trusted for excellence in academics and caring faculty.", images: ["http://img.b2bpic.net/free-photo/portrait-businesswoman-walking-street-empty-city-center-holding-folder-with-work_1258-194078.jpg"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "The Educators AlSaade | Quality Education in Khanpur", description: "Join 1,000+ families trusting The Educators AlSaade Campus for excellence in education, modern facilities, and proven student outcomes."};
|
|
|
|
|
|
|
|
|
|
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" className={`${outfit.className} ${poppins.className}`}>
|
|
|
|
|
<body>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1419,7 +1389,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|