Last active
August 18, 2022 14:32
-
-
Save TangoPJ/519a4b7670c076622935df8d5907e8f1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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