This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: loading page on login

+9
+9
src/webapp/app/(auth)/login/loading.tsx
··· 1 + import { Loader, Stack } from '@mantine/core'; 2 + 3 + export default function Loading() { 4 + return ( 5 + <Stack align="center"> 6 + <Loader type="dots" /> 7 + </Stack> 8 + ); 9 + }