
Amazing Tailwind CSS Grid Layouts
Copy paste components like these in minutes.
28th March, 2023

Modern Animation Glare Effects
Beautiful transitions and animations out of the box.
1st April, 2023
Installation
$ npx vividoraui@latest add featured-cardAdd Tailwind CSS utilities
Add these animations to your tailwind.config.js:
/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
extend: {
animation: {
'shine': 'shine 1.5s linear infinite',
},
keyframes: {
shine: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(100%)' },
},
},
},
},
}