Skip to content

Commit 464d10a

Browse files
committed
feat: Add coming soon components
1 parent 20126fb commit 464d10a

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { Box, Text, VStack } from '@devup-ui/react'
2+
3+
export const ComingSoon = () => {
4+
return (
5+
<Box
6+
bg="$cardBg"
7+
borderRadius="12px"
8+
p="40px"
9+
textAlign="center"
10+
width="100%"
11+
>
12+
<VStack alignItems="center" gap="12px">
13+
<Text color="$textSecondary" fontSize="32px">
14+
🚧
15+
</Text>
16+
<Text color="$title" typography="h6">
17+
Coming Soon
18+
</Text>
19+
<Text color="$textSecondary" typography="body">
20+
This section is currently under construction.
21+
</Text>
22+
</VStack>
23+
</Box>
24+
)
25+
}

0 commit comments

Comments
 (0)