└── gradients-css/
├── README.md
└── client
├── .eslintrc.cjs
├── .gitignore
├── .hintrc
├── .htaccess
├── .prettierrc
├── app
├── components.json
├── index.html
├── package-lock.json
├── package.json
├── postcss.config.js
├── src
├── tailwind.config.js
├── tsconfig.json
├── tsconfig.node.json
├── vercel.json
└── vite.config.ts
client.src.hooks
File | Summary |
---|---|
use-toast.ts | ❯ REPLACE-ME |
client.src.pages
File | Summary |
---|---|
HomePage.tsx | ❯ REPLACE-ME |
LoadingPage.tsx | ❯ REPLACE-ME |
NotFoundPage.tsx | ❯ REPLACE-ME |
client.src.routes
File | Summary |
---|---|
__routes.tsx | ❯ REPLACE-ME |
client.app.css
File | Summary |
---|---|
globals.css | ❯ REPLACE-ME |
TypeScript: version x.y.z
Build the project from source:
- Clone the gradients-css repository:
❯ git clone https://github.com/balshaer/gradients-css/
- Navigate to the project directory:
❯ cd gradients-css
- Install the required dependencies:
❯ npm install
To run the project, execute the following command:
❯ npm run build && node dist/main.js
Execute the test suite using the following command:
❯ npm test
Contributions are welcome! Here are several ways you can contribute:
- Report Issues: Submit bugs found or log feature requests for the
gradients-css
project. - Submit Pull Requests: Review open PRs, and submit your own PRs.
- Join the Discussions: Share your insights, provide feedback, or ask questions.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/balshaer/gradients-css/
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.'
- Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!