first commit

This commit is contained in:
unknown
2023-01-27 20:50:01 +08:00
commit a5e17d8c5d
69 changed files with 12547 additions and 0 deletions

View File

@ -0,0 +1,20 @@
import NextLink from 'next/link';
import { Heading, HStack } from '@chakra-ui/react';
import { DraughtsCrown } from '../draughts/board/views/DraughtsCrown';
export function Logo() {
return (
<NextLink href="/" passHref>
<HStack as="a">
<DraughtsCrown
bg="black"
padding={1}
borderRadius="50%"
height="1.5em"
width="1.5em"
/>
<Heading fontSize="2xl">Givan Checkers</Heading>
</HStack>
</NextLink>
);
}