diff options
| author | real-zephex <[email protected]> | 2024-04-30 09:43:00 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-30 09:43:00 +0530 |
| commit | df1e72a7efc7f7df773e022753a6808a26989300 (patch) | |
| tree | d28d3f9c32b7e2fca6bad3caffde3a93384a953c /src/app/kdrama/components | |
| parent | Merge pull request #5 from zephex-alt/master (diff) | |
| parent | small fixes (diff) | |
| download | dramalama-df1e72a7efc7f7df773e022753a6808a26989300.tar.xz dramalama-df1e72a7efc7f7df773e022753a6808a26989300.zip | |
Merge pull request #6 from zephex-alt/master
Fixes and Improvements - 2
Diffstat (limited to 'src/app/kdrama/components')
| -rw-r--r-- | src/app/kdrama/components/popular.jsx | 6 | ||||
| -rw-r--r-- | src/app/kdrama/components/recent.jsx | 6 | ||||
| -rw-r--r-- | src/app/kdrama/components/search.jsx | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/src/app/kdrama/components/popular.jsx b/src/app/kdrama/components/popular.jsx index 335b45a..1b93313 100644 --- a/src/app/kdrama/components/popular.jsx +++ b/src/app/kdrama/components/popular.jsx @@ -19,11 +19,11 @@ export default async function PopularDramas() { key={index}
style={{ textDecoration: "none" }}
>
- <div className={styles.AnimeEntry}>
+ <div className={styles.AnimeEntry} title={item.title}>
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
- width={150}
- height={230}
+ width={190}
+ height={270}
alt="Drama Poster"
/>
<p>{item.title}</p>
diff --git a/src/app/kdrama/components/recent.jsx b/src/app/kdrama/components/recent.jsx index e4cdb69..b53009e 100644 --- a/src/app/kdrama/components/recent.jsx +++ b/src/app/kdrama/components/recent.jsx @@ -18,11 +18,11 @@ export default async function RecentDramas() { key={index}
style={{ textDecoration: "none" }}
>
- <div className={styles.AnimeEntry}>
+ <div className={styles.AnimeEntry} title={item.title}>
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
- width={160}
- height={240}
+ width={190}
+ height={270}
alt="Drama Poster"
/>
<p>{item.title}</p>
diff --git a/src/app/kdrama/components/search.jsx b/src/app/kdrama/components/search.jsx index dc641e1..f44e4bb 100644 --- a/src/app/kdrama/components/search.jsx +++ b/src/app/kdrama/components/search.jsx @@ -52,8 +52,8 @@ export default function DramaSearch() { <p>{item.title}</p>
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
- width={120}
- height={190}
+ width={140}
+ height={210}
alt="Drama Poster"
/>
</div>
|