e11f70b347
* refactor: optimize page loading and data fetching * fix: resolve recurring production runtime errors * feat: add MCP company and customer updates * fix: handle year-end tax adjustments * feat: harden annual report compliance * fix: expand invoice logo and font support * fix: sanitize API route error responses * fix: sanitize user-facing error messages * feat: persist onboarding and tax assessment notices * fix: reduce cloud backup audit churn * feat: refine invoice editor layout * fix: show saved tax adjustments in INK2 * fix: complete annual report API mappings * docs: record operational safeguards and decisions * fix: harden annual report review findings * fix: adjust column span for description based on VAT registration * New css class name
20 lines
663 B
TypeScript
20 lines
663 B
TypeScript
import { Skeleton } from '@/components/ui/skeleton'
|
|
|
|
export function AuthPageSkeleton() {
|
|
return (
|
|
<main className="flex min-h-screen items-center justify-center bg-background p-4" aria-busy="true">
|
|
<div className="w-full max-w-sm space-y-6 rounded-lg border bg-card p-6">
|
|
<div className="space-y-2">
|
|
<Skeleton className="mx-auto h-8 w-40" />
|
|
<Skeleton className="mx-auto h-4 w-56" />
|
|
</div>
|
|
<div className="space-y-4">
|
|
<Skeleton className="h-11 w-full" />
|
|
<Skeleton className="h-11 w-full" />
|
|
<Skeleton className="h-11 w-full" />
|
|
</div>
|
|
</div>
|
|
</main>
|
|
)
|
|
}
|