UNPKG

lightswind

Version:

A modern frontend library with pre-built Tailwind CSS components for building responsive and interactive user interfaces.

35 lines (27 loc) 1.08 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="https://cdn.tailwindcss.com"></script> <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script> <!-- Lightwind CDN --> <link rel="stylesheet" href="https://lightswind.com/tailwind.min.css"> <script src="https://cdn.jsdelivr.net/npm/lightwind@1.0.9/plugin.min.js"></script> </head> <body> <div class="flex gap-2 flex-wrap items-center justify-center h-[100vh]"> <div class="flex gap-2 flex-wrap items-center justify-center "> <a href="javascript:void(0)" class='font-bold bg-primarylw text-white hover:bg-primarylw-2 p-4 px-12 rounded-full cursor-pointer'> Button </a> <a href="javascript:void(0)" class='font-bold bg-darklw text-white hover:bg-darklw-2 p-4 px-12 rounded-full cursor-pointer'> Button </a> </div> </div> </body> </html>