fix(detail): change detail

This commit is contained in:
zhangheng
2026-02-24 16:39:29 +08:00
parent ee635b3ee4
commit 62ba2fa5cf
18 changed files with 11 additions and 23 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>
)
}