- Adicionados ícones SVG para ChatGPT, Claude, Gemini e OpenRouter - Implementados ícones para modos claro e escuro do ChatGPT - Criado script de inicialização para PostgreSQL com extensão pgcrypto - Adicionado script de configuração de ambiente que faz backup do .env - Configurado tsconfig.json para TypeScript com opções de compilação
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import {
|
|
FilterSkeleton,
|
|
InvoiceSummaryCardSkeleton,
|
|
TransactionsTableSkeleton,
|
|
} from "@/components/skeletons";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
/**
|
|
* Loading state para a página de fatura de cartão
|
|
* Layout: MonthPicker + InvoiceSummaryCard + Filtros + Tabela de lançamentos
|
|
*/
|
|
export default function FaturaLoading() {
|
|
return (
|
|
<main className="flex flex-col gap-6">
|
|
{/* Month Picker placeholder */}
|
|
<div className="h-[60px] animate-pulse rounded-2xl bg-foreground/10" />
|
|
|
|
{/* Invoice Summary Card */}
|
|
<section className="flex flex-col gap-4">
|
|
<InvoiceSummaryCardSkeleton />
|
|
</section>
|
|
|
|
{/* Seção de lançamentos */}
|
|
<section className="flex flex-col gap-4">
|
|
<div className="space-y-6">
|
|
{/* Header */}
|
|
<div className="flex items-center justify-between">
|
|
<Skeleton className="h-8 w-48 rounded-2xl bg-foreground/10" />
|
|
<Skeleton className="h-10 w-40 rounded-2xl bg-foreground/10" />
|
|
</div>
|
|
|
|
{/* Filtros */}
|
|
<FilterSkeleton />
|
|
|
|
{/* Tabela */}
|
|
<TransactionsTableSkeleton />
|
|
</div>
|
|
</section>
|
|
</main>
|
|
);
|
|
}
|