- Updated biome schema version from 2.3.1 to 2.3.11 in biome.json. - Refactored package.json for better readability and updated dependencies. - Adjusted class names in InformationBubble, ChatAttachments, ChatBubble, FileUpload, Loading, and other components for consistent styling. - Changed height classes from fixed pixel values to relative values for better responsiveness. - Removed unnecessary comments and unused variables in user.controller.ts.
11 lines
447 B
TypeScript
11 lines
447 B
TypeScript
"use client";
|
|
import { ASvg } from "~/components/svgs";
|
|
|
|
export const LoadingPage = () => {
|
|
return (
|
|
<div className="flex h-full max-h-full w-full animate-pulse items-center justify-center py-20">
|
|
<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>
|
|
<ASvg className="absolute size-24 -translate-y-2" />
|
|
</div>
|
|
);
|
|
};
|