Skip to content
Permalink
92ddde3845
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
22 lines (21 sloc) 538 Bytes
import { Button, Card, Container, Heading, VStack } from "@chakra-ui/react";
export default function () {
return (
<Container pt="16vh">
<Card p="4vh">
<VStack alignContent="center" gap="2vh">
<Heading>Log in to Car Crushers</Heading>
<br />
<Button
as="a"
borderRadius="24px"
colorScheme="blue"
href="/api/auth/oauth"
>
Log in with Discord
</Button>
</VStack>
</Card>
</Container>
);
}