This project is built with Next.js and SASS.
-
Fork the project
-
Clone the project:
git clone https://github.com/<your-github-username>/spaceslounge.git
-
Navigate to the project directory:
cd spaceslounge
-
Install dependencies:
yarn
-
Create a new branch:
git checkout -b <YourBranchName>
-
To run the whole project locally:
yarn dev
-
Make your changes
-
Stage your changes:
git add <NameOfFileChanged>
-
Commit your changes:
git commit -m "<Your commit message here>"
-
Push your commits to your local repository
git push origin <YourBranchName>
-
Create a pull request
-
Wait for maintainers to review your pull request and suggest any changes
Before pushing your changes, please check and ensure that all your additions follow the naming conventions listed below:
- Folders names should follow the
Upper Camel Case
convention (FolderName
) - Component file names should follow the
Lower Camel Case
convention (componentFileName.jsx
) - Components name should follow the
Upper Camel Case
convention (ComponentName
)