Tailgrids License Agreement

Last updated on 28 Oct 2025

You can

  • Allowed to Use with commercial projects
  • Allowed to Use for unlimited client projects
  • Allowed to Remove credits and use your own designed by / branding
  • Allowed to Charge clients for your work that you built with TailGrids UI components
  • Allowed to Modify to fit your/clients project needs

You can't

  • NOT ALLOWED to to resell, redistribute, license, or sub-license.
  • NOT ALLOWED to Use components for website builder or UI generators.

If you have a specific query that doesnt cover license page, feel free to open a support ticket or ask via chat, we will get back to you ASAP.


Disclaimer: The Tailwind name and logos are registered trademarks of Tailwind Labs Inc. However, TailGrids maintains no affiliation, association, or part in Tailwind Labs or the official Tailwind CSS.

tsx
"use client";

import { cn } from "@/lib/cn";
import { useState } from "react";

interface CodeBlockProps {
  code: string;
  highlightedHtml: string;
  language?: string;
  showLineNumbers?: boolean;
  className?: string;
}