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

21 lines
414 B

import type { NextPage } from 'next'
import Head from 'next/head'
import styles from '../styles/Home.module.css'
import styled from 'styled-components'
import Header from 'components/header'
const Home: NextPage = () => {
return (
<div className={styles.container}>
<Head>
<title>wych.dev</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<Header />
</div>
)
}
export default Home