friends-best/pages/index.tsx
2021-07-23 17:28:40 +01:00

25 lines
614 B
TypeScript

import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Home.module.css'
export default function Home() {
return (
<div className={styles.container}>
<Head>
<title>Vanner Bast | Friends Best</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main className={styles.main}>
<h1 className={styles.title}>
Welcome to Vanner Bast.
</h1>
<h2>
This website is currently WIP.
</h2>
</main>
</div>
)
}