Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
23c1205
feat(dashboard): add dashboard layout and role-specific pages
IBzmani Dec 28, 2024
fbe183c
Add sidebar and navbar to dashboard layout
IBzmani Dec 29, 2024
fe136e9
Add sidebar menu
IBzmani Dec 29, 2024
9522259
Add navbar
IBzmani Dec 29, 2024
7898f6c
Install recharts
IBzmani Dec 29, 2024
c665e1f
feat(tailwind): add custom color palette
IBzmani Dec 29, 2024
80ca7af
feat(admin): enhance admin page layout with user cards and charts
IBzmani Dec 29, 2024
bd5e651
feat(user): add UserCard component for displaying user information
IBzmani Dec 29, 2024
bdc798a
feat(chart): add AttendanceChart component for visualizing attendance…
IBzmani Dec 29, 2024
45a23d7
feat(chart): add CountChart component for visualizing student gender …
IBzmani Dec 29, 2024
0f1c944
feat(admin): add EventCalendar and FinanceChart components to admin page
IBzmani Dec 30, 2024
e4eb0c5
feat(chart): add FinanceChart component for visualizing financial data
IBzmani Dec 30, 2024
411a9fe
install "react-calendar"
IBzmani Dec 30, 2024
bfa0b53
feat(calendar): add EventCalendar component for displaying events
IBzmani Dec 31, 2024
f0a65d5
feat(announcements): add Announcements component for displaying notif…
IBzmani Dec 31, 2024
511bbf8
feat(styles): enhance react-calendar styles for improved UI
IBzmani Dec 31, 2024
a5a4e94
feat(layout): update sidebar styles for improved visibility
IBzmani Dec 31, 2024
e713283
feat(admin): add Announcements component to AdminPage
IBzmani Dec 31, 2024
f599c45
feat(menu): filter menu items based on user role visibility
IBzmani Dec 31, 2024
78b7558
Install "react-big-calendar"
IBzmani Jan 2, 2025
a93b5a7
feat(parent): integrate Announcements and BigCalendar components into…
IBzmani Jan 2, 2025
1fc8de6
feat(dashboard): integrate Announcements and BigCalendar components i…
IBzmani Jan 2, 2025
bd105f0
feat(styles): enhance calendar component styles for better visibility…
IBzmani Jan 2, 2025
5923116
feat(calendar): add BigCalendar component with customizable views and…
IBzmani Jan 2, 2025
01d103c
feat(config): add remote image pattern for Pexels in Next.js configur…
IBzmani Jan 3, 2025
7a05449
Add "flex col" class
IBzmani Jan 3, 2025
d3f0ddb
feat(table): add Table and TableSearch components for data display an…
IBzmani Jan 3, 2025
9c8bab7
feat(pagination): add Pagination component for navigation between pages
IBzmani Jan 3, 2025
645d964
feat(teachers): add TeacherListPage component with table and pagination
IBzmani Jan 3, 2025
cac4d8b
feat(subject): add SubjectListPage component with table and pagination
IBzmani Jan 3, 2025
88a5bf1
feat(student): add StudentListPage component with table and pagination
IBzmani Jan 3, 2025
022f680
feat(results): add ResultListPage component with table and pagination
IBzmani Jan 3, 2025
b0b7763
feat(parents): add ParentListPage component with table and pagination
IBzmani Jan 3, 2025
c5943cb
feat(lessons): add LessonListPage component with table and pagination
IBzmani Jan 3, 2025
d36212a
feat(exams): add ExamListPage component with table and pagination
IBzmani Jan 3, 2025
0b9456d
feat(events): add EventListPage component with table and pagination
IBzmani Jan 3, 2025
b72a1eb
feat(classes): add ClassListPage component with table and pagination
IBzmani Jan 3, 2025
a72cd79
feat(assignments): add AssignmentListPage component with table and pa…
IBzmani Jan 3, 2025
0dce55a
feat(announcements): add AnnouncementListPage component with table an…
IBzmani Jan 3, 2025
1cd308a
Update calendarEvents with most recent date to test event display
IBzmani Jan 3, 2025
3367d0e
feat(performance): add Performance component with pie chart visualiza…
IBzmani Jan 5, 2025
255e3fb
feat(teachers): add SingleTeacherPage component with profile, schedul…
IBzmani Jan 5, 2025
75e780e
Change image names: 'plus' is now 'create' and 'edit' is now 'update'
IBzmani Jan 6, 2025
d98ac4e
install "@hookform/resolvers", "react-hook-form" and "zod" for form v…
IBzmani Jan 7, 2025
2a04642
feat(students): add SingleStudentPage component with profile, schedul…
IBzmani Jan 7, 2025
b31c7ec
feat(forms): add FormModal component for dynamic form handling
IBzmani Jan 7, 2025
128661f
feat(announcements): integrate FormModal for create, update, and dele…
IBzmani Jan 7, 2025
afffa52
feat(assignments): integrate FormModal for create, update, and delete…
IBzmani Jan 7, 2025
705c10a
feat(classes): integrate FormModal for create, update, and delete act…
IBzmani Jan 7, 2025
fdf142e
feat(events): integrate FormModal for create, update, and delete acti…
IBzmani Jan 7, 2025
4e3f807
feat(exams): integrate FormModal for create, update, and delete actio…
IBzmani Jan 7, 2025
74c7177
feat(lessons, parents, results, students, subjects, teachers): integr…
IBzmani Jan 7, 2025
32044ad
feat(teachers): integrate FormModal for updating teacher details on S…
IBzmani Jan 7, 2025
2635a0a
feat(teachers): add TeacherForm component for creating and updating t…
IBzmani Jan 7, 2025
5699ece
feat(exams, classes): add ExamForm and ClassForm components for creat…
IBzmani Jan 7, 2025
7161407
feat(events, lessons, assignments, announcements, lessons, parents, r…
IBzmani Jan 7, 2025
0b49081
feat(forms): add InputField component for form input handling
IBzmani Jan 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
images:{
remotePatterns: [{ hostname: 'images.pexels.com'}]
}
};

export default nextConfig;
Loading