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.
		
		
		
		
		
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			734 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			23 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 SignUp = ({ theme, changeTheme }: ThemeProps) => (
 | 
						|
    <Page width="100%">
 | 
						|
        <Head>
 | 
						|
            <title>Drift - Sign Up</title>
 | 
						|
            <meta name="description" content="A self-hostable clone of GitHub Gist" />
 | 
						|
        </Head>
 | 
						|
        <Page.Header>
 | 
						|
            <Header theme={theme} changeTheme={changeTheme} />
 | 
						|
        </Page.Header>
 | 
						|
        <Page.Content width={"var(--main-content-width)"} paddingTop={"var(--gap)"} margin="auto">
 | 
						|
            <Auth page="signup" />
 | 
						|
        </Page.Content>
 | 
						|
    </Page>
 | 
						|
)
 | 
						|
 | 
						|
export default SignUp
 |