const buttonVariants = { primary: 'border-sky-700 bg-sky-700 text-white hover:bg-sky-800 focus-visible:outline-sky-700', secondary: 'border-slate-300 bg-white text-slate-700 hover:bg-slate-50 focus-visible:outline-slate-500', ghost: 'border-transparent bg-transparent text-slate-600 hover:bg-slate-100 focus-visible:outline-slate-500', danger: 'border-rose-600 bg-rose-600 text-white hover:bg-rose-700 focus-visible:outline-rose-600', } export const appCardClass = 'rounded-2xl border border-[#404040] bg-[#262626] shadow-sm' export const appInputClass = 'h-10 w-full rounded-lg border border-[#404040] bg-[#1a1a1a] px-3 text-sm text-[#e5e5e5] outline-none transition placeholder:text-[#a3a3a3] focus:border-[#3b82f6] focus:ring-1 focus:ring-[#3b82f6]' export const appTextareaClass = 'min-h-28 w-full rounded-lg border border-[#404040] bg-[#1a1a1a] px-3 py-2 text-sm leading-6 text-[#e5e5e5] outline-none transition placeholder:text-[#a3a3a3] focus:border-[#3b82f6] focus:ring-1 focus:ring-[#3b82f6]' export const appLabelClass = 'mb-1.5 block text-xs font-medium text-[#e5e5e5]' export function Button({ children, className = '', variant = 'primary', type = 'button', ...props }) { return ( ) } export function Card({ children, className = '' }) { return (
{children}
) } export function PageHeader({ actions, description, eyebrow, title }) { return (
{eyebrow ? (

{eyebrow}

) : null}

{title}

{description ? (

{description}

) : null}
{actions ?
{actions}
: null}
) } export function DarkField({ children, label }) { return (
{label} {children}
) }