Merge branch 'join' into lukman/4-juli-2024

This commit is contained in:
Moh Alif Al Lukman
2024-07-04 13:36:10 +08:00
committed by GitHub
8 changed files with 96 additions and 5 deletions

View File

@@ -0,0 +1,29 @@
import { Box, Group, Skeleton } from "@mantine/core";
export default function LoadingPage() {
return (
<>
<Box p={20}>
<Skeleton width={"100%"} height={180} radius={"md"} />
<Group my={20} justify="space-between" grow>
<Skeleton height={50} radius={"md"} />
<Skeleton height={50} radius={"md"} />
<Skeleton height={50} radius={"md"} />
</Group>
<Group my={20} justify="space-between" grow>
<Skeleton height={100} radius={"md"} />
<Skeleton height={100} radius={"md"} />
</Group>
<Group my={20} justify="space-between" grow>
<Skeleton height={100} radius={"md"} />
<Skeleton height={100} radius={"md"} />
</Group>
<Group my={20} justify="space-between" grow>
<Skeleton height={100} radius={"md"} />
<Skeleton height={100} radius={"md"} />
</Group>
</Box>
</>
)
}