From e12586ea200320cd9376130a05abe9dc3f86e8a6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 02:35:52 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 45 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..3224d46 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}