This commit is contained in:
2025-04-13 12:57:54 +02:00
parent 90fea420a2
commit 36510fd276
12 changed files with 1712 additions and 102 deletions

13
components/spinner.tsx Normal file
View File

@ -0,0 +1,13 @@
export function Spinner() {
return (
<div
className="inline-block h-4 w-4 animate-spin rounded-full border-2 border-solid border-current border-r-transparent align-[-0.125em] motion-reduce:animate-[spin_1.5s_linear_infinite]"
role="status"
>
<span className="!absolute !-m-px !h-px !w-px !overflow-hidden !whitespace-nowrap !border-0 !p-0 ![clip:rect(0,0,0,0)]">
Loading...
</span>
</div>
)
}