mirror of https://github.com/MaxLeiter/Drift
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			734 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			22 lines
		
	
	
		
			734 B
		
	
	
	
		
			TypeScript
		
	
import { Page } from "@geist-ui/core";
 | 
						|
import Head from 'next/head'
 | 
						|
import Auth from "../components/auth";
 | 
						|
import Header from "../components/header";
 | 
						|
import { ThemeProps } from "./_app";
 | 
						|
 | 
						|
const SignIn = ({ theme, changeTheme }: ThemeProps) => (
 | 
						|
    <Page width={"100%"}>
 | 
						|
        <Head>
 | 
						|
            <title>Drift - Sign In</title>
 | 
						|
            <meta name="description" content="A self-hostable clone of GitHub Gist" />
 | 
						|
        </Head>
 | 
						|
        <Page.Header>
 | 
						|
            <Header theme={theme} changeTheme={changeTheme} />
 | 
						|
        </Page.Header>
 | 
						|
        <Page.Content paddingTop={"var(--gap)"} width={"var(--main-content-width)"} margin="auto">
 | 
						|
            <Auth page="signin" />
 | 
						|
        </Page.Content>
 | 
						|
    </Page>
 | 
						|
)
 | 
						|
 | 
						|
export default SignIn |