mirror of
https://github.com/jnsahaj/tweakcn.git
synced 2026-09-01 15:37:45 +08:00
25 lines
1.1 KiB
TypeScript
25 lines
1.1 KiB
TypeScript
import { AI_REQUEST_FREE_TIER_LIMIT, MAX_FREE_THEMES } from "@/lib/constants";
|
|
|
|
type Feature = {
|
|
description: string;
|
|
status: "done" | "pending";
|
|
};
|
|
|
|
export const FREE_SUB_FEATURES: Feature[] = [
|
|
{ description: "Full theme customization", status: "done" },
|
|
{ description: `${AI_REQUEST_FREE_TIER_LIMIT} AI generated themes`, status: "done" },
|
|
{ description: `Save and share up to ${MAX_FREE_THEMES} themes`, status: "done" },
|
|
{ description: "Import theme using CSS variables", status: "done" },
|
|
{ description: "Export theme via CSS variables", status: "done" },
|
|
{ description: "Export theme via Shadcn Registry Command", status: "done" },
|
|
{ description: "Contrast checker", status: "done" },
|
|
];
|
|
|
|
export const PRO_SUB_FEATURES: Feature[] = [
|
|
{ description: "Save and share unlimited themes", status: "done" },
|
|
{ description: "Unlimited AI generated themes", status: "done" },
|
|
{ description: "Generate themes from images using AI", status: "done" },
|
|
{ description: "Priority support", status: "done" },
|
|
{ description: "Save your own fonts and colors", status: "pending" },
|
|
];
|