This project is built using Next.js, and it automatically maps the files within the src/app/
directory to routes in the application. Each directory within app/
corresponds to a URL path, and each page.tsx
file within those directories serves as the content for that route.
For example:
- The
page.tsx
file located in/src/app/about/
would load when you visit/about
in the browser.
src/app/faq/page.tsx
→/faq
src/app/demo-day/page.tsx
→/demo-day
src/app/hackathon/page.tsx
→/hackathon
src/app/opening-ceremony/page.tsx
→/opening-ceremony
src/app/workshops/page.tsx
→/workshops
src/app/workshops/day1/page.tsx
→/workshops/day1
src/app/workshops/day2/page.tsx
→/workshops/day2
src/app/workshops/day3/page.tsx
→/workshops/day3
src/app/registration/page.tsx
→/registration
src/app/sponsors/page.tsx
→/sponsors
- Components for each page are located within the
src/app/components/(page)
directory.
- fork the repo [https://github.com/NUS-Fintech-Society/SD_Fintech_Summit]
- git clone (URL)
- npm install
- npm run dev
- git add *
- git commit -m "(message)"
- git push
- make a pull request