Skip to content

deglan-rivas/layout-tailwind-clonBootstrap

Repository files navigation

Bootstrap's HomePage

Solo Layout

📜 Description

  • Due to its practicality, Vite was chosen to initialize, minify, and create the production bundle.
  • React, TailwindCSS and Shadcn/ui were used to quickly layout complex components.
  • The project is deployed on Netlify. Additionally, the final code is dockerized for local testing.

🚀 Getting Started

Online Version

Use this link to try the code deployed on Netlify.

Local Version

  1. Run the following commands for Linux. You must have Docker and its post-installation set up beforehand.
# Download the latest image from DockerHub:
docker pull deglanrivas/layout-tailwind-clonbootstrap:latest

# Create a container based on that image:
docker run --rm -d -p 8080:80 --name demo_container deglanrivas/layout-tailwind-clonbootstrap:latest
  1. Open http://localhost:8080 in your browser to see the result 🚀

  2. Once the test is complete, remove the image and container:

# Stop the containers:
docker stop demo_container && docker rmi deglanrivas/layout-tailwind-clonbootstrap:latest

# Verify they were correctly removed:
docker images
docker ps -a