| This is a very nice step in making Tailwind more Bootstrap like (read beginner friendly). One common complaint about Tailwind is that it makes the HTML look very full (full of classes). A very good example on OP's website for a button: Using tailwind: <a class="inline-block px-4 py-3 text-sm font-semibold text-center text-white uppercase transition duration-200 ease-in-out bg-indigo-500 rounded-md cursor-pointer hover:bg-indigo-600">Button</a>
Using daisy: <a class="btn btn-primary">Button</a>
Although I personally think that the corners at a bit too rounded by default, giving it a very amateur look but I think you can customize that.But a very promising project indeed. |
If you want to do in "raw" tailwind (i.e. without this component library), you can use layers to create your own component classes, e.g.: