diff options
| author | real-zephex <[email protected]> | 2024-03-14 16:16:36 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-14 16:16:36 +0530 |
| commit | 8c7f9fd113611df8c2f308b7120c0a8ae4cae706 (patch) | |
| tree | d2cb96fee85aade8d5ba9a3de0743d026c1e4f02 /src/app/anime/page.js | |
| parent | Initial commit from Create Next App (diff) | |
| download | dramalama-8c7f9fd113611df8c2f308b7120c0a8ae4cae706.tar.xz dramalama-8c7f9fd113611df8c2f308b7120c0a8ae4cae706.zip | |
First commit: Rewriting dramalama in next.js
Diffstat (limited to 'src/app/anime/page.js')
| -rw-r--r-- | src/app/anime/page.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/app/anime/page.js b/src/app/anime/page.js new file mode 100644 index 0000000..df6b647 --- /dev/null +++ b/src/app/anime/page.js @@ -0,0 +1,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> + ) +}
\ No newline at end of file |