Files
AuroraBot-discord/web/src/pages/Settings.tsx
2026-01-08 16:09:26 +01:00

13 lines
406 B
TypeScript

export function Settings() {
return (
<div>
<h2 className="text-3xl font-bold tracking-tight">Settings</h2>
<p className="text-muted-foreground">Manage bot configuration.</p>
<div className="mt-6 rounded-xl border border-dashed p-8 text-center text-muted-foreground">
Settings panel coming soon...
</div>
</div>
);
}