/songly

Primary LanguageTypeScriptOtherNOASSERTION

This is the website portion of the CA115 (DIME) project 2023 for Group R.

The CSS code can be found in a few places:

  • src/styles/globals.css
  • src/components/<Component Name>/<>.css
  • src/pages/<Path>/<>.css

The HTML code can be found in .tsx files, such as:

  • src/components/<Component Name>/<>.tsx
  • pages/<Path>/<>.tsx

This project uses React, NextJS and TypeScript. If you have any questions, feel free to email me at sam.mcelligott3@mail.dcu.ie and I will clarify any queries.

Copyright

See this repo's LICENSE.

Running the website locally

The website can be run locally using the following steps:

  • First, ensure you have both Git and NodeJS installed on your machine.
  • Clone the repo using the git clone command. You don't need to be signed in to do this. Note that you are only permitted to do this subject to the LICENSE agreement:
git clone https://github.com/sammce/ca115-website
  • Move into the ca115-website directory which was created by cloning the repo:
cd ca115-website
  • Install the required dependencies using npm, which comes with NodeJS:
npm install
  • Start the development server using:
npm run dev