ignore folder

This commit is contained in:
2026-04-21 06:30:48 +07:00
commit ca00b36f19
70 changed files with 3871 additions and 0 deletions

4
components/ui/Alert.tsx Normal file
View File

@ -0,0 +1,4 @@
export default function Alert({ message, type = "info" }: { message: string; type?: "info" | "success" | "danger" }) {
const variant = type === "danger" ? "danger" : type === "success" ? "success" : "info";
return <div className={`alert alert-${variant}`}>{message}</div>;
}