Convert Figma logo to code with AI

merakiuilabs logomerakiui

Tailwind CSS components that support RTL languages & fully responsive based on Flexbox & CSS Grid with elegant Dark Mode 🚀 ☄️.

2,474
166
2,474
2

Top Related Projects

Tailwind Starter Kit a beautiful extension for TailwindCSS, Free and Open Source

A plugin that provides a basic reset for form styles that makes form elements easy to override with utilities.

😎 Awesome things related to Tailwind CSS

Quick Overview

Meraki UI is a collection of responsive Tailwind CSS components designed to help developers quickly build beautiful user interfaces. It offers a wide range of pre-built components that are customizable and easy to integrate into web projects, saving time and effort in the development process.

Pros

  • Extensive library of ready-to-use UI components
  • Built with Tailwind CSS, allowing for easy customization and integration
  • Responsive design out of the box
  • Regular updates and active community support

Cons

  • Requires knowledge of Tailwind CSS to fully utilize and customize
  • Some components may require additional JavaScript for full functionality
  • Limited documentation compared to more established UI libraries
  • Potential for design inconsistency if not used carefully across a project

Code Examples

  1. Adding a button component:
<button class="px-6 py-2 font-medium tracking-wide text-white capitalize transition-colors duration-300 transform bg-blue-600 rounded-lg hover:bg-blue-500 focus:outline-none focus:ring focus:ring-blue-300 focus:ring-opacity-80">
    Click me
</button>
  1. Implementing a card component:
<div class="max-w-xs overflow-hidden bg-white rounded-lg shadow-lg dark:bg-gray-800">
    <div class="px-4 py-2">
        <h1 class="text-xl font-bold text-gray-800 uppercase dark:text-white">PRODUCT NAME</h1>
        <p class="mt-1 text-sm text-gray-600 dark:text-gray-400">Lorem ipsum dolor sit amet consectetur adipisicing elit. Modi quos quidem sequi illum facere recusandae voluptatibus</p>
    </div>
    <img class="object-cover w-full h-48 mt-2" src="https://images.unsplash.com/photo-1542291026-7eec264c27ff?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=320&q=80" alt="NIKE AIR">
    <div class="flex items-center justify-between px-4 py-2 bg-gray-900">
        <h1 class="text-lg font-bold text-white">$129</h1>
        <button class="px-2 py-1 text-xs font-semibold text-gray-900 uppercase transition-colors duration-300 transform bg-white rounded hover:bg-gray-200 focus:bg-gray-400 focus:outline-none">Add to cart</button>
    </div>
</div>
  1. Creating a simple navbar:
<nav class="bg-white shadow dark:bg-gray-800">
    <div class="container flex items-center justify-center p-6 mx-auto text-gray-600 capitalize dark:text-gray-300">
        <a href="#" class="text-gray-800 dark:text-gray-200 border-b-2 border-blue-500 mx-1.5 sm:mx-6">home</a>
        <a href="#" class="border-b-2 border-transparent hover:text-gray-800 dark:hover:text-gray-200 hover:border-blue-500 mx-1.5 sm:mx-6">features</a>
        <a href="#" class="border-b-2 border-transparent hover:text-gray-800 dark:hover:text-gray-200 hover:border-blue-500 mx-1.5 sm:mx-6">pricing</a>
        <a href="#" class="border-b-2 border-transparent hover:text-gray-800 dark:hover:text-gray-200 hover:border-blue-500 mx-1.5 sm:mx-6">blog</a>
    </div>
</nav>

Getting Started

To use Meraki UI components in your project:

  1. Make sure you have Tailwind CSS installed in your project.
  2. Copy the desired component

Competitor Comparisons

Tailwind Starter Kit a beautiful extension for TailwindCSS, Free and Open Source

Pros of Tailwind Starter Kit

  • More comprehensive, offering full page templates and complete UI kits
  • Includes JavaScript components and interactivity
  • Provides both Vue.js and React versions for some components

Cons of Tailwind Starter Kit

  • Less frequently updated compared to MerakiUI
  • Larger file size and potentially more complex to integrate
  • Some components may require additional setup or dependencies

Code Comparison

MerakiUI (Button component):

<button class="px-6 py-2 font-medium tracking-wide text-white capitalize transition-colors duration-300 transform bg-blue-600 rounded-lg hover:bg-blue-500 focus:outline-none focus:ring focus:ring-blue-300 focus:ring-opacity-80">
    Button
</button>

Tailwind Starter Kit (Button component):

<button class="bg-pink-500 text-white active:bg-pink-600 font-bold uppercase text-sm px-6 py-3 rounded shadow hover:shadow-lg outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150" type="button">
    Button
</button>

Both repositories offer Tailwind CSS components, but Tailwind Starter Kit provides more complete solutions with full page templates and UI kits. MerakiUI focuses on individual components and is updated more frequently. The code comparison shows similar approaches to styling buttons, with slight differences in class naming and organization.

A plugin that provides a basic reset for form styles that makes form elements easy to override with utilities.

Pros of tailwindcss-forms

  • Official Tailwind CSS plugin, ensuring compatibility and long-term support
  • Focuses specifically on form elements, providing a more comprehensive solution for form styling
  • Integrates seamlessly with existing Tailwind CSS projects

Cons of tailwindcss-forms

  • Limited to form elements, while MerakiUI offers a broader range of UI components
  • Requires additional configuration and setup as a plugin
  • Less visually diverse out-of-the-box compared to MerakiUI's pre-designed components

Code Comparison

tailwindcss-forms:

<input type="text" class="form-input px-4 py-3 rounded-full">

MerakiUI:

<input type="text" class="block w-full px-4 py-2 text-gray-700 bg-white border rounded-md focus:border-blue-400 focus:ring-blue-300 focus:outline-none focus:ring focus:ring-opacity-40">

The tailwindcss-forms example shows a simpler class structure, relying on the plugin's default styles. MerakiUI's approach offers more detailed styling directly in the HTML, providing greater customization without additional configuration.

😎 Awesome things related to Tailwind CSS

Pros of awesome-tailwindcss

  • Comprehensive collection of Tailwind CSS resources, tools, and components
  • Regularly updated with community contributions
  • Includes a wide range of categories, from plugins to templates

Cons of awesome-tailwindcss

  • Lacks ready-to-use UI components
  • May be overwhelming for beginners due to the large number of resources
  • Requires additional effort to implement components from various sources

Code Comparison

awesome-tailwindcss is primarily a curated list, so it doesn't contain direct code examples. However, MerakiUI provides ready-to-use components. Here's a sample button component from MerakiUI:

<button class="px-6 py-2 font-medium tracking-wide text-white capitalize transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:ring focus:ring-blue-300 focus:ring-opacity-80">
    Button
</button>

MerakiUI offers pre-built components, while awesome-tailwindcss provides links to resources where you can find similar components or learn how to create them.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Meraki UI logo

Meraki UI

🎉 🚀 Free Tailwind CSS Components That Support RTL Languages & Fully Responsive Based On Flexbox & CSS Grid with elegant Dark Mode.

Resources

Credits

License

The MIT License (MIT). Please see License File for more information.