How to do a wavy underline with Tailwind CSS
Tailwind CSS has the necessary utility classes to do a wavy text underline, like this:
All you need to do is add the usual underline
class, and then add the decoration-wavy
class in addition.
For example, these classes produce the image above:
<p class="underline decoration-wavy decoration-cyan-400 text-xl font-bold">
Hello, world!
</p>