aboutsummaryrefslogtreecommitdiff
path: root/src/app/kdrama/components
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-04-30 09:43:00 +0530
committerGitHub <[email protected]>2024-04-30 09:43:00 +0530
commitdf1e72a7efc7f7df773e022753a6808a26989300 (patch)
treed28d3f9c32b7e2fca6bad3caffde3a93384a953c /src/app/kdrama/components
parentMerge pull request #5 from zephex-alt/master (diff)
parentsmall fixes (diff)
downloaddramalama-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.jsx6
-rw-r--r--src/app/kdrama/components/recent.jsx6
-rw-r--r--src/app/kdrama/components/search.jsx4
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>