8 Commits

Author SHA1 Message Date
9386913ae7 Update src/app/teacher-dashboard/page.tsx 2026-03-05 16:49:57 +00:00
fedf51435d Update src/app/student-portal/page.tsx 2026-03-05 16:49:57 +00:00
e502b081aa Update src/app/page.tsx 2026-03-05 16:49:57 +00:00
c6759d76e7 Update src/app/layout.tsx 2026-03-05 16:49:56 +00:00
254debb653 Update src/app/about/page.tsx 2026-03-05 16:49:56 +00:00
9177290b80 Merge version_1 into main
Merge version_1 into main
2026-03-05 16:31:54 +00:00
c294e20d3c Merge version_1 into main
Merge version_1 into main
2026-03-05 16:31:08 +00:00
c15af1083e Merge version_1 into main
Merge version_1 into main
2026-03-05 16:29:18 +00:00
5 changed files with 10 additions and 68 deletions

View File

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

View File

@@ -1,74 +1,17 @@
import type { Metadata } from "next"; 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 "./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 = { export const metadata: Metadata = {
title: "EduPortal - School Management Platform", title: "EduPortal - School Management Solution", description: "Complete educational platform for students, teachers, and administrators"};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body>{children}
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1436,7 +1379,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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

View File

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

View File

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