Add authentication
This commit is contained in:
16
apps/builder/pages/signin.tsx
Normal file
16
apps/builder/pages/signin.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
import { AuthSwitcher } from 'components/auth/AuthSwitcher'
|
||||
import { SignInForm } from 'components/auth/SignInForm'
|
||||
import { Heading, VStack } from '@chakra-ui/react'
|
||||
import React from 'react'
|
||||
|
||||
const SignInPage = () => {
|
||||
return (
|
||||
<VStack spacing={4} h="100vh" justifyContent="center">
|
||||
<Heading>Sign in</Heading>
|
||||
<AuthSwitcher type="signin" />
|
||||
<SignInForm />
|
||||
</VStack>
|
||||
)
|
||||
}
|
||||
|
||||
export default SignInPage
|
Reference in New Issue
Block a user