feat(person/collection): collection

This commit is contained in:
2026-02-05 10:57:26 +08:00
parent ee47aed128
commit 885bf210c3
19 changed files with 2616 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
"use client"
import { Paper, Stack, Text } from "@mantine/core"
export default function TaskBoardContainer() {
return (
<Paper
withBorder
p="md"
radius="md"
style={{ borderColor: "rgba(0,0,0,0.06)" }}>
<Stack gap="xs">
<Text fw={700}></Text>
<Text size="sm" c="dimmed">
</Text>
</Stack>
</Paper>
)
}