2025-08-22 15:44:18 +02:00
|
|
|
"use client";
|
2025-08-04 17:45:44 +02:00
|
|
|
import { ASvg } from "~/components/svgs";
|
|
|
|
|
|
|
|
|
|
export const LoadingPage = () => {
|
2025-08-28 18:27:07 +02:00
|
|
|
return (
|
|
|
|
|
<div className="flex h-full max-h-full w-full animate-pulse items-center justify-center py-20">
|
2025-11-14 17:21:21 +01:00
|
|
|
<div className="relative flex size-40 animate-spin items-center justify-center rounded-full border-8 border-muted-foreground border-t-red-400 text-4xl text-red-400"></div>
|
2025-10-10 16:18:43 +02:00
|
|
|
<ASvg className="-translate-y-2 absolute size-24" />
|
2025-08-28 18:27:07 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
2025-08-04 17:45:44 +02:00
|
|
|
};
|