Add Daftar Peserta, Daftar Sponsor, Detail Sponsor, Tambah Sponsor

This commit is contained in:
2025-01-15 17:35:47 +08:00
parent d0680f2743
commit a649fad7cb
26 changed files with 651 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
import { ComponentGlobal_CardStyles } from "@/app_modules/_global/component";
import CustomSkeleton from "@/app_modules/components/CustomSkeleton";
import { Center, Grid, Stack } from "@mantine/core";
import { Center, Grid, SimpleGrid, Stack } from "@mantine/core";
export function Event_ComponentSkeletonDetail() {
return (
@@ -30,6 +30,16 @@ export function Event_ComponentSkeletonDetail() {
<CustomSkeleton h={20} w={"100%"} />
<CustomSkeleton h={20} w={"100%"} />
</Stack>
<SimpleGrid
cols={2}
breakpoints={[
{ maxWidth: "48rem", cols: 2, spacing: "sm" },
{ maxWidth: "36rem", cols: 1, spacing: "sm" },
]}
>
<CustomSkeleton h={100} w={"100%"} />
<CustomSkeleton h={100} w={"100%"} />
</SimpleGrid>
</Stack>
</ComponentGlobal_CardStyles>
</>