friends-best/pages/index.tsx

25 lines
614 B
TypeScript
Raw Normal View History

2021-07-23 16:14:54 +00:00
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>
2021-07-23 16:28:40 +00:00
<title>Vanner Bast | Friends Best</title>
2021-07-23 16:14:54 +00:00
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main className={styles.main}>
<h1 className={styles.title}>
2021-07-23 16:28:40 +00:00
Welcome to Vanner Bast.
2021-07-23 16:14:54 +00:00
</h1>
2021-07-23 16:28:40 +00:00
<h2>
This website is currently WIP.
</h2>
2021-07-23 16:14:54 +00:00
</main>
</div>
)
}