Welcome to the React project created using Vite and styled with Tailwind CSS. I have created this project to add tailwind CSS components which I would be making in my learning journey. (components such as signup cards, subscribe cards, login forms, and more).
Ensure you have the following installed on your machine:
-
Clone the repository:
git clone https://github.com/itachisky/react-tailwind-components.git
-
Navigate to the project directory:
cd your-repo-name -
Install the dependencies:
npm installor if you prefer yarn:
yarn install
Start the development server with the following command:
npm run dev
or with yarn:
yarn dev
The application will be available at http://localhost:3000.
├── public
│ ├── index.html
├── src
│ ├── assets
│ ├── components
│ │ ├── SignupCard.jsx
│ │ ├── SubscribeCard.jsx
│ │ ├── LoginForm.jsx
│ ├── App.jsx
│ ├── main.jsx
├── .gitignore
├── package.json
├── postcss.config.js
├── tailwind.config.js
├── vite.config.js
npm run devoryarn dev: Runs the app in the development mode.npm run buildoryarn build: Builds the app for production.npm run serveoryarn serve: Serves the production build locally.
Contributions are welcome! Please open an issue or submit a pull request for any bugs or feature requests.
- Fork the repository.
- Create your feature branch (
git checkout -b feature/your-feature-name). - Commit your changes (
git commit -m 'Add some feature'). - Push to the branch (
git push origin feature/your-feature-name). - Open a pull request.