diff options
| author | real-zephex <[email protected]> | 2024-03-16 15:32:44 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-16 15:32:44 +0530 |
| commit | 5fc30a26612f11c4a4ec5de1a98562712802f5df (patch) | |
| tree | a78b63473160e8a424cf7ae2a538adc64e98477a /src/app/info/page.js | |
| parent | minor fixes for vercel (diff) | |
| download | dramalama-5fc30a26612f11c4a4ec5de1a98562712802f5df.tar.xz dramalama-5fc30a26612f11c4a4ec5de1a98562712802f5df.zip | |
feature added: search anime by title
Diffstat (limited to 'src/app/info/page.js')
| -rw-r--r-- | src/app/info/page.js | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/app/info/page.js b/src/app/info/page.js index 6353b1a..1468652 100644 --- a/src/app/info/page.js +++ b/src/app/info/page.js @@ -1,7 +1,11 @@ +import './info.css' + export default function Info() { return ( - <h2> - Hello - </h2> + <div className='infoPageContainer'> + <p> + This is the anime info page. This page will display information about the queried anime when anime id is passed along the url. + </p> + </div> ) }
\ No newline at end of file |