diff options
| author | zephex-alt <[email protected]> | 2024-05-08 04:26:20 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-08 04:26:20 +0000 |
| commit | d4fdb4e3d6a3fbf042db8605d371605a64c8db4c (patch) | |
| tree | 4c9e005c80a832be7a48975b97f15ace92be770d /src/app/anime/recent | |
| parent | changed search bar width for smaller devices (diff) | |
| download | dramalama-d4fdb4e3d6a3fbf042db8605d371605a64c8db4c.tar.xz dramalama-d4fdb4e3d6a3fbf042db8605d371605a64c8db4c.zip | |
minor css fixes and added a new source for movies
Diffstat (limited to 'src/app/anime/recent')
| -rw-r--r-- | src/app/anime/recent/page.jsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/anime/recent/page.jsx b/src/app/anime/recent/page.jsx index 21d5fb4..44aa301 100644 --- a/src/app/anime/recent/page.jsx +++ b/src/app/anime/recent/page.jsx @@ -10,7 +10,7 @@ export default async function Recent() { return (
<div className={styles.TrendingContainer}>
<div className={styles.TrendingText}>
- <p>Recent Releases</p>
+ <h1>Recent Releases</h1>
</div>
<div className={styles.trending}>
@@ -28,8 +28,8 @@ export default async function Recent() { <Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
className={styles.trendingImage}
- width={210}
- height={310}
+ width={167}
+ height={267}
alt="Drama"
priority
/>
|