Skip to content

Instantly share code, notes, and snippets.

@bnymn
Created October 10, 2021 10:05
Show Gist options
  • Save bnymn/427332140937379ff4572c186bf6aad6 to your computer and use it in GitHub Desktop.
Save bnymn/427332140937379ff4572c186bf6aad6 to your computer and use it in GitHub Desktop.
Empty index.tsx of login page
import type { NextPage } from 'next'
import Head from 'next/head'
const Home: NextPage = () => {
return (
<div>
<Head>
<title>Login Page</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main>
</main>
</div>
)
}
export default Home
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment