Update src/app/layout.tsx

This commit is contained in:
2026-03-11 02:35:52 +00:00
parent 70ef4da447
commit e12586ea20

View File

@@ -1,28 +1,60 @@
import type { Metadata } from "next";
import { Mulish, Inter } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Mulish } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "EduSchool - Educational Platform for Algerian Schools",
description: "Empower your school with EduSchool's integrated learning platform. Manage students, teachers, and operations seamlessly with role-based access designed for Algerian public schools.",
keywords: "educational platform, school management system, learning management system, Algerian schools, student portal, teacher dashboard, education technology",
metadataBase: new URL("https://eduschool.dz"),
alternates: {
canonical: "https://eduschool.dz",
},
openGraph: {
title: "EduSchool - Transform Education in Algeria",
description: "Integrated platform for students, teachers, and administrators. Designed specifically for Algerian public schools.",
url: "https://eduschool.dz",
siteName: "EduSchool",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-child-looking-laptop-with-parents_23-2149241088.jpg",
alt: "EduSchool Platform Dashboard",
},
],
},
twitter: {
card: "summary_large_image",
title: "EduSchool - Educational Platform for Algerian Schools",
description: "Empower education with integrated learning management for all roles",
images: ["http://img.b2bpic.net/free-photo/close-up-child-looking-laptop-with-parents_23-2149241088.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +63,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<body
className={`${mulish.variable} ${inter.variable} ${halant.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +77,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}