Portfolio website written with Next.js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wychdev-nextjs/pages/index.tsx

20 lines
392 B

import type { NextPage } from 'next'
import Head from 'next/head'
import styles from '../styles/Home.module.css'
const Home: NextPage = () => {
return (
<div className={styles.container}>
<Head>
2 years ago
<title>wych.dev</title>
<link rel="icon" href="/favicon.ico" />
</Head>
2 years ago
<h1>wych.dev</h1>
<h2>A very cool website</h2>
</div>
)
}
export default Home