Tailwind CSS & Shadcn & Chart JS
Here’s a detailed section of my skills about Tailwind CSS, Shadcn, and Chart.js, covering their features, use cases, and example code snippets:
<div class="bg-blue-500 text-white p-4 rounded-lg shadow-lg"> <h1 class="text-2xl font-bold">Welcome to Tailwind CSS</h1> <p class="mt-2">Tailwind CSS is a utility-first CSS framework for rapid UI development.</p> </div><div class="bg-gray-100 p-4 md:p-6 lg:p-8"> <h1 class="text-lg md:text-xl lg:text-2xl">Responsive Design with Tailwind</h1> </div>module.exports = { theme: { extend: { colors: { primary: '#3490dc', secondary: '#ffed4a', }, }, }, };<button class="btn btn-blue">Click Me</button>
Last updated