Merge version_2 into main #4

Merged
bender merged 5 commits from version_2 into main 2026-03-05 16:50:02 +00:00
5 changed files with 10 additions and 68 deletions

View File

@@ -144,4 +144,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,74 +1,17 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "EduPortal - School Management Platform",
description: "Complete school management and student portal solution. Track grades, attendance, assignments, and communicate with teachers and parents seamlessly.",
keywords: "school management, student portal, educational platform, attendance system, grade tracking",
metadataBase: new URL("https://eduportal.edu"),
alternates: {
canonical: "https://eduportal.edu",
},
openGraph: {
title: "EduPortal - Modern School Management",
description: "Streamlined education platform for students, teachers, and administrators",
url: "https://eduportal.edu",
siteName: "EduPortal",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/workers-looking-monthly-statistics_329181-12025.jpg",
alt: "EduPortal Dashboard",
},
],
},
twitter: {
card: "summary_large_image",
title: "EduPortal - School Management Platform",
description: "Complete school management and student portal solution",
images: ["http://img.b2bpic.net/free-photo/workers-looking-monthly-statistics_329181-12025.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "EduPortal - School Management Solution", description: "Complete educational platform for students, teachers, and administrators"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -225,4 +225,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -139,4 +139,4 @@ export default function StudentPortalPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -139,4 +139,4 @@ export default function TeacherDashboardPage() {
</div>
</ThemeProvider>
);
}
}