Skip to content

m2l33k/NextJEEl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-platform/ ├── public/ │ ├── index.html │ ├── favicon.ico ├── src/ │ ├── assets/ # Static assets (images, icons, fonts, etc.) │ ├── components/ # Reusable UI components │ │ ├── Auth/ │ │ │ ├── SignIn.jsx │ │ │ ├── SignUp.jsx │ │ │ ├── ForgotPassword.jsx │ │ └── Navbar.jsx │ │ └── Footer.jsx │ ├── pages/ # Pages for each feature │ │ ├── Home.jsx │ │ ├── News.jsx │ │ ├── Books.jsx │ │ ├── Courses.jsx │ │ ├── Scholarships.jsx │ │ ├── Profile.jsx │ └── layouts/ # Layout components (e.g., for navigation, sidebar) │ │ ├── MainLayout.jsx │ ├── services/ # API calls and service logic │ │ ├── authService.js │ │ ├── newsService.js │ │ ├── booksService.js │ │ ├── coursesService.js │ │ ├── scholarshipsService.js │ ├── store/ # State management (Redux, Context API) │ │ ├── index.js # Store configuration │ │ ├── slices/ # Feature-specific slices │ │ │ ├── authSlice.js │ │ │ ├── newsSlice.js │ │ │ ├── booksSlice.js │ │ │ ├── coursesSlice.js │ │ │ ├── scholarshipsSlice.js │ ├── utils/ # Utility functions │ │ ├── apiClient.js # Axios instance │ │ ├── validators.js # Form validation logic │ ├── App.jsx # Main application component │ ├── index.js # Application entry point │ ├── routes.js # Route definitions │ ├── styles/ # Global and scoped styles │ ├── main.css │ ├── variables.css ├── package.json └── README.md

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors