aboutsummaryrefslogtreecommitdiff
path: root/src/app/kdrama/components
diff options
context:
space:
mode:
authorzephex-alt <[email protected]>2024-04-29 07:11:35 +0000
committerGitHub <[email protected]>2024-04-29 07:11:35 +0000
commit7e33153f834b4712172f8e06e90ec4eda3cca028 (patch)
treea9316148e84bf9ab3b5cc0af2c162dd1fbdc539b /src/app/kdrama/components
parentdownloading mangas is not longer available. i need a proper hosting to proper... (diff)
downloaddramalama-7e33153f834b4712172f8e06e90ec4eda3cca028.tar.xz
dramalama-7e33153f834b4712172f8e06e90ec4eda3cca028.zip
adjusted the images' width and height
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
2 files changed, 6 insertions, 6 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>