feat(dashboard): refina layout e widgets do painel

This commit is contained in:
Felipe Coutinho
2026-03-17 17:09:40 +00:00
parent 272e90aef9
commit 50177621ff
9 changed files with 91 additions and 63 deletions

View File

@@ -6,12 +6,12 @@ export function DashboardWelcome({ name }: { name?: string | null }) {
const greeting = getGreeting();
return (
<section className="p-2">
<section className="py-4">
<div className="tracking-tight">
<h1 className="text-xl">
{greeting}, <span className="text-primary">{displayName}</span>
{greeting}, {displayName}
</h1>
<p className="text-sm mt-1 text-muted-foreground">{formattedDate}</p>
<h2 className="text-sm mt-1 text-muted-foreground">{formattedDate}</h2>
</div>
</section>
);