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.tsxfile located in/src/app/about/would load when you visit/aboutin the browser.
src/app/faq/page.tsx→/faqsrc/app/demo-day/page.tsx→/demo-daysrc/app/hackathon/page.tsx→/hackathonsrc/app/opening-ceremony/page.tsx→/opening-ceremonysrc/app/workshops/page.tsx→/workshopssrc/app/workshops/day1/page.tsx→/workshops/day1src/app/workshops/day2/page.tsx→/workshops/day2src/app/workshops/day3/page.tsx→/workshops/day3src/app/registration/page.tsx→/registrationsrc/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