This is the React + Typescript + Tailwindcss version of the original web project
You can find the Figma file here
Follow these steps to set up and run the project in your local environment:
Clone this repository:
git clone https://github.com/Coding-Latam/proyecto-web-react.git
cd repoInstall the necessary dependencies:
npm installTo start the development server:
npm run devThis will open the application in your default browser at http://localhost:5173.
npm run dev- Starts the development server.npm run build- Builds the application for production.npm run preview- Previews the production build on a local server.npm run lint- Runs linters to ensure code quality.
- React - Library for building user interfaces.
- ViteJS - Fast and lightweight bundling tool.
- TypeScript - Programming language with static typing.
To see the full list of dependencies and their versions, check the package.json file.
- Fork the repository.
- Create a branch for your new feature (
git checkout -b feature/new-feature). - Make your changes and commit them (
git commit -m 'Add new feature'). - Push your changes to your branch (
git push origin feature/new-feature). - Open a Pull Request.