import { NextPage } from 'next' import AuthLayout, { AuthInput, AuthPassword, } from '../components/layout/authentication/AuthLayout' import Link from '../components/common/Link' const SignUpPage: NextPage = () => { return (

Sign Up

Username Password Confirm Password
Sign in instead?
) } export default SignUpPage