my-fullstack-ai-platform/app/dashboard/page.tsx

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&apos;s home.</p>
</div>
);
}