import { type registryItemSchema } from "shadcn/schema" import { type z } from "zod" export const BASES: z.infer[] = [ { name: "radix", type: "registry:style", title: "Radix UI", description: "Optimized for fast development, easy maintenance, and accessibility.", dependencies: ["radix-ui"], meta: { logo: "Radix UI", }, }, { name: "base", type: "registry:style", title: "Base UI", description: "Components for building accessible web apps and design systems.", dependencies: ["@base-ui/react"], meta: { logo: "", }, }, ] export type Base = (typeof BASES)[number]