alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
feat: loading page on login
author
pdelfan
date
4 months ago
(Mar 2, 2026, 10:57 AM -0800)
commit
5177e550
5177e55045e1441e7b982991c07ee119d1e43d15
parent
596b56c0
596b56c058de7a67846f7e55a118f2ef5b143853
+9
1 changed file
Expand all
Collapse all
Unified
Split
src
webapp
app
(auth)
login
loading.tsx
+9
src/webapp/app/(auth)/login/loading.tsx
View file
Reviewed
···
1
1
+
import { Loader, Stack } from '@mantine/core';
2
2
+
3
3
+
export default function Loading() {
4
4
+
return (
5
5
+
<Stack align="center">
6
6
+
<Loader type="dots" />
7
7
+
</Stack>
8
8
+
);
9
9
+
}