Initial theme designed

This commit is contained in:
David
2021-03-16 01:33:19 +01:00
parent 6153f739d2
commit 13877b5e11
16 changed files with 1739 additions and 120 deletions

22
components/Footer.tsx Normal file
View File

@@ -0,0 +1,22 @@
import { FC } from "react";
import { Center, Text, useColorModeValue } from "@chakra-ui/react";
type Props = {
[key: string]: any
};
const Footer: FC<Props> = (props) => (
<Center
w="full"
p={3}
fontSize={["sm", null, "md"]}
bgColor={useColorModeValue("lingva.100", "lingva.900")}
{...props}
>
<Text as="span">&#169; 2021 TheDavidDelta</Text>
<Text as="span" mx={2}>·</Text>
<Text as="span">Licensed under AGPLv3</Text>
</Center>
);
export default Footer;