-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8744f8a
commit 5b4feba
Showing
5 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { Box, Heading, VStack, Button } from "@chakra-ui/react" | ||
import { FiPlus } from "@react-icons/all-files/fi/FiPlus" | ||
import { Logo } from "components/Logo" | ||
import { DataHeading } from "components/utils/Card" | ||
|
||
export const HomeEmptyView: React.FC<{}> = () => { | ||
return ( | ||
<Box | ||
bg="secondaryBG" | ||
w="full" | ||
h="calc(100vh - 4rem)" | ||
display="flex" | ||
alignItems="center" | ||
justifyContent="center" | ||
> | ||
<VStack spacing="4"> | ||
<Logo /> | ||
<Heading size="2xl">Welcome to Metlo</Heading> | ||
<DataHeading fontSize="lg">Add a connection to get started</DataHeading> | ||
<Button | ||
leftIcon={<FiPlus />} | ||
colorScheme="blue" | ||
as="a" | ||
href="/connections" | ||
> | ||
Connection | ||
</Button> | ||
</VStack> | ||
</Box> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters