2022-02-19 14:44:11 +03:30
|
|
|
import type { NextPage } from 'next'
|
2022-02-28 14:06:38 +03:30
|
|
|
import amirmoghi3Glitch from "assets/images/amirmoghi3.png"
|
2022-02-19 14:44:11 +03:30
|
|
|
import Image from 'next/image'
|
|
|
|
|
|
|
|
|
|
const Home: NextPage = () => {
|
|
|
|
|
return (
|
2022-02-28 14:06:38 +03:30
|
|
|
<div className='text-center text-secondary relative top-[30%] -translate-y-2/4 px-2'>
|
|
|
|
|
<h1 className='text-3xl'> <Image alt="amirmoghi3" src={amirmoghi3Glitch} /></h1>
|
|
|
|
|
<p className='opacity-60 text-sm'>PM4D | Web3 Developer | Devops Specialist | Web Engineer</p>
|
2022-02-19 14:44:11 +03:30
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Home
|