We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20126fb commit 464d10aCopy full SHA for 464d10a
1 file changed
apps/landing/src/components/ComingSoon.tsx
@@ -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
19
+ <Text color="$textSecondary" typography="body">
20
+ This section is currently under construction.
21
22
+ </VStack>
23
+ </Box>
24
+ )
25
+}
0 commit comments