mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-06-10 07:16:01 +00:00
Adiciona os arquivos `america-medium.woff2` e `america-bold.woff2` e registra o weight 500 no `font_index.ts`. Padroniza o uso de `font-medium` em substituição a `font-semibold` e `font-bold` em títulos, valores monetários e rótulos de destaque em todos os componentes do app, landing page e componentes de UI base. `Card` ganha `hover:border-primary/40` e `CardTitle` recebe `text-base`. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
482 B
TypeScript
22 lines
482 B
TypeScript
import { cn } from "@/shared/utils/ui";
|
|
|
|
interface AuthHeaderProps {
|
|
title: string;
|
|
description?: string;
|
|
}
|
|
|
|
export function AuthHeader({ title, description }: AuthHeaderProps) {
|
|
return (
|
|
<div className={cn("flex flex-col gap-2.5")}>
|
|
<h1 className="text-2xl font-medium tracking-tight text-card-foreground">
|
|
{title}
|
|
</h1>
|
|
{description ? (
|
|
<p className="max-w-md text-sm leading-6 text-muted-foreground">
|
|
{description}
|
|
</p>
|
|
) : null}
|
|
</div>
|
|
);
|
|
}
|