aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/page.js
blob: df6b64787d9fee40e9e0b76d816828df1899c492 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import './anime.css'
import Image from 'next/image'

export default async function Anime() {
	return (
		<div>
			<div className='underDev'>
				<Image
					src="/WIP.png"
					width={"250"}
					height={"250"}
				>
				</Image>
			</div>
		</div>
	)
}