import { pricingPlansPersonal, pricingPlanTeam } from '@/config/pricing'; import clsx from 'clsx'; import Icon from '@/components/Icon'; export const metadata = { title: 'Tabler Pricing', description: 'Check out our pricing plans and choose the best option for your needs. Find affordable and flexible solutions for our products and services.', }; const PricingCards = () => { return (
{pricingPlansPersonal.map(plan => (
{plan.featured && (
Popular
)}

{plan.name}

$ {plan.price}
per user
per year
Get started
))}
); }; const PricingTeam = ({ className }) => { return (

{pricingPlanTeam.name}

{pricingPlanTeam.description}

    {pricingPlanTeam.features.map(feature => (
  • {feature}
  • ))}
$ {pricingPlanTeam.price}
per team
per year
Get started
); }; export default function Page() { return ( <>

Simple, transparent pricing

Get early access to 100+ components and free updates every month. Make it yours today!

Frequently Asked Questions

How is Tabler UI Pro different from Tabler UI?

Tabler UI provides the basic functional components you'll need to compose together to create your app or website. Pro components are assembled, building blocks and page templates you can drop-in your app to save time.

Is this a yearly subscription?

No, you have a lifetime access to all our components. This means that you'll get new components and updates every month till we've exhausted our component inspiration.

I want to buy this but I can't afford it. Is there a discount?

If you're a student or if the price in your local currency is too high, kindly send an email to support@tabler.io stating your situation and we'll consider giving you a discount.

What can I do with this license?

  • To build your websites or SaaS project that end-users need to pay
  • To build an open-source tool or documentation website

What version of Tabler UI is used?

The components in PRO are authored using Tabler UI v1.2+. If you're on v0.8, we recommend upgrading to the most recent version to use Pro components.

What restrictions does this license have?

  • Create a clone of Tabler UI pro to sell
  • Create products like templates, themes, Figma or Sketch UI kits, page builders based on the PRO components
  • Recreate the components for other UI libraries or CSS frameworks
); }