8 lines
294 B
TypeScript
8 lines
294 B
TypeScript
export default function DashboardOverview() {
|
|
return (
|
|
<div className="p-8">
|
|
<h1 className="text-2xl font-semibold mb-4 text-foreground">Overview</h1>
|
|
<p className="text-muted-foreground">Welcome to your dashboard. This is your organization's home.</p>
|
|
</div>
|
|
);
|
|
}
|