- This project was developed by following the YouTube tutorial "React JS & Tailwind CSS Responsive Website - Beginner Friendly" by Adrian Hajdin.
- The tutorial demonstrates how to build a fully responsive landing page using React and Tailwind CSS from scratch.
- Vite
- React.js
- Tailwind CSS
While following the tutorial, I made several modifications to improve functionality and design:
- Replaced
React-Typedwithreact-typing-effectfor smoother text animations - Added new sections such as the Benefits component and a Hero badge
- Created reusable styles in
index.cssandtailwind.config.js - Used different assets and refined the layout
- react-typing-effect — Typing animation for React components
- react-icons — Popular icon set for React projects
To get started with this project, clone the repository and install the dependencies:
git clone <repository-url>
cd <repository-folder>
npm install
To start the development server, run:
npm run devTo create a production build, run:
npm run build📃 Note: The tutorial mentioned above used Yarn for setting up the project, but I prefer to use npm.
- Installing Tailwind CSS with Vite
A comprehensive guide to setting up Tailwind CSS in a React + Vite project.