Skip to content
Permalink
f3fb370b6f
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
17 lines (16 sloc) 459 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" colorScheme="blue" href="/api/auth/oauth">
Log in with Discord
</Button>
</VStack>
</Card>
</Container>
);
}