13 lines
406 B
TypeScript
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>
|
|
);
|
|
}
|