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