diff options
| author | zephex-alt <[email protected]> | 2024-04-29 19:02:30 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-29 19:02:30 +0000 |
| commit | 75554bf84c7520c0bff2d4e7f14141577319dbda (patch) | |
| tree | 9ef4a5ab980c60d28a323d47905615423782e08f /src/app/anime/recent/page.jsx | |
| parent | adjusted the images' width and height (diff) | |
| download | dramalama-75554bf84c7520c0bff2d4e7f14141577319dbda.tar.xz dramalama-75554bf84c7520c0bff2d4e7f14141577319dbda.zip | |
late night fuckery
Diffstat (limited to 'src/app/anime/recent/page.jsx')
| -rw-r--r-- | src/app/anime/recent/page.jsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/app/anime/recent/page.jsx b/src/app/anime/recent/page.jsx index 64cb775..55a038f 100644 --- a/src/app/anime/recent/page.jsx +++ b/src/app/anime/recent/page.jsx @@ -21,7 +21,10 @@ export default async function Releases() { href={`/anime/${item.id}`}
style={{ textDecoration: "none", color: "white" }}
>
- <div className={styles.RecentEntries}>
+ <div
+ className={styles.RecentEntries}
+ title={item.title}
+ >
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
className={styles.RecentImage}
|