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

13 lines
405 B
TypeScript

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