This is a Next.js project bootstrapped with create-next-app
.
Our community is on a mission to turn the internet into an accessible, online university by curating the best digital resources already on the web into structured learning pathways (or courses).
join the discord: https://t.co/KiLrqHuLEr visit our landing page: https://jotted.club/
First, run the development server:
npm install
npm run dev
# or
yarn dev
# or
pnpm dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying pages/index.js
. The page auto-updates as you edit the file.
API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.js
.
The pages/api
directory is mapped to /api/*
. Files in this directory are treated as API routes instead of React pages.
However most our our api work is done in the /utils/api.js
This project uses next/font
to automatically optimize and load Inter, a custom Google Font.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
We handle our codebase and all changes through Github, so make a fork and a pull request if you want to contribute code. Below are the steps to making a proper contribution:
- Fork the repo and create your branch from master.
- If you've added code that should be tested, add tests.
- If you've changed APIs, update the documentation.
- Do testing on the code to ensure you haven't introduced breaking changes
- Make sure your code lints.
- Issue that pull request! Read More
-
Separation of Concerns: This principle states that each component in an application should be built independently and be responsible for a single purpose. This makes it easier to debug and maintain the codebase since each component can be tested separately.
-
Modularity: Modularity is the idea of breaking down an application into smaller, reusable components. This helps reduce code duplication and makes it easier to extend applications.
-
Performance: Performance is an important part of any web application. By using Next.js, developers can take advantage of features such as server-side rendering, code splitting, and lazy loading to ensure that the application is running as efficiently as possible.
-
Security: Security is always a top priority when developing web applications. Next.js provides features such as secure cookies, authentication strategies, and authorization schemes to ensure that your application is secure.
-
Scalability: Scalability is the ability of an application to handle increasing amounts of load. Next.js provides features such as server-side rendering, code splitting, and lazy loading to ensure that your application can scale seamlessly.