ParteAfterParty-Frontend

Link : Figma Link

Link : Live Link

New frontend repository for static files of the ParteAfterParty Project. Please read all instructions carefully as pull requests will be carefully accessed before being merged

Folder Structure

The project consists of the home page,sign-in page,register page and also an asset folder at the root directory.

In the assets folder, we have an images folder where all images should be sent to, there is a js folder containing js files for each page. The MAIN CSS file and it's content SHOULD NEVER be touched or edited.

Contribution guide

  1. Fork the repository
  2. Clone and then open it up on your code editor
  3. Open terminal and set upsream branch: git remote add upstream https://github.com/ParteAfterParty/ParteAfterParty-Frontend.git
  4. Pull upstream git pull upstream main
  5. Create a new branch for the task your are doing eg: git checkout -b home-page
  6. After making changes, do git add .
  7. Commit your changes with a descriptive commit messagegit commit -m "commit message"
  8. To make sure there are no conflicts: git pull upstream develop
  9. Push changes to your new branch: git push origin your-current-branch-name
  10. Create a pull request to the develop branch