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

17 lines
403 B

import type {NextPageWithLayout} from './_app'
import type { ReactElement } from 'react'
import Layout from '../components/layout'
const Page: NextPageWithLayout = () => {
return (
<>
<p>I am a student with a passion for programming, physics/mathematics and *NIX (Linux, UNIX etc).</p>
</>
)
}
Page.getLayout = (page: ReactElement) => {
return <Layout>{page}</Layout>
}
export default Page