Add All Skeleton Except Collaboration

This commit is contained in:
2024-12-30 17:37:44 +08:00
parent 82a55d7148
commit a74a32b422
55 changed files with 305 additions and 219 deletions

View File

@@ -1,5 +1,6 @@
import { ComponentGlobal_CardStyles } from "@/app_modules/_global/component";
import { Box, Grid, Skeleton } from "@mantine/core";
import CustomSkeleton from "@/app_modules/components/CustomSkeleton";
import { Box, Grid } from "@mantine/core";
export default function SkeletonDonasi() {
return <>
@@ -8,7 +9,7 @@ export default function SkeletonDonasi() {
<ComponentGlobal_CardStyles key={index}>
<Grid>
<Grid.Col span={6}>
<Skeleton w={"100%"} height={100} radius="md" />
<CustomSkeleton w={"100%"} height={100} radius="md" />
</Grid.Col>
<Grid.Col span={6}>
<Box>
@@ -16,7 +17,7 @@ export default function SkeletonDonasi() {
<Box key={index} py={5}>
<Grid align="center">
<Grid.Col span={12}>
<Skeleton w={"100%"} h={15} />
<CustomSkeleton w={"100%"} h={15} />
</Grid.Col>
</Grid>
</Box>