chore: remove legacy workspace and restructure API + modular admin UI

This commit is contained in:
mberlin
2026-03-19 09:35:10 -03:00
parent 996c6e9241
commit b60fb432ff
94 changed files with 532 additions and 4086 deletions

View File

@@ -0,0 +1,10 @@
import type { InputHTMLAttributes } from "react";
export function Input({ className = "", ...props }: InputHTMLAttributes<HTMLInputElement>) {
return (
<input
className={`w-full rounded-lg border border-slate-200 bg-white px-4 py-2 text-sm shadow-sm transition focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 dark:border-slate-700 dark:bg-slate-900 dark:text-slate-100 ${className}`}
{...props}
/>
);
}