source: src/app/login/layout.tsx@ 636f86c

Last change on this file since 636f86c was 636f86c, checked in by stefansaveski <stefansaveski19@…>, 12 months ago

Add initial data files for applications, documents, semesters, student profiles, and subjects

  • Created applications.json with exam sessions and application details for 2024 and 2025.
  • Added documents.json containing various document types and their associated fees.
  • Introduced semesters.json with details of semesters, including status and financial information.
  • Established student-profile.json with personal and educational information for a sample student.
  • Implemented subjects.json detailing subjects offered per semester along with their respective professors and statuses.
  • Property mode set to 100644
File size: 198 bytes
Line 
1import Header from "@/components/header";
2
3export default function LoginLayout({
4 children,
5}: {
6 children: React.ReactNode;
7}) {
8 return (
9 <>
10 <Header />
11 {children}
12 </>
13 );
14}
Note: See TracBrowser for help on using the repository browser.