Skip to content

Instantly share code, notes, and snippets.

@TangoPJ
Last active August 18, 2022 14:32
Show Gist options
  • Save TangoPJ/519a4b7670c076622935df8d5907e8f1 to your computer and use it in GitHub Desktop.
Save TangoPJ/519a4b7670c076622935df8d5907e8f1 to your computer and use it in GitHub Desktop.
import Head from 'next/head'
import styles from '../styles/Home.module.css'
export default function Home() {
return (
<div className={styles.container}>
<Head>
<title>Home page</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main className={styles.main}>
</main>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment