aboutsummaryrefslogtreecommitdiff
path: root/src/app/kdrama/components
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-05-08 10:13:36 +0530
committerGitHub <[email protected]>2024-05-08 10:13:36 +0530
commit5dcca245b34037eb15505ffd1d1b23213bedad9c (patch)
treefeb9a8d943a7c91076d5ff691fba653dc5b4d36c /src/app/kdrama/components
parentDelete .github/workflows/eslint.yml (diff)
parentminor css fixes and added a new source for movies (diff)
downloaddramalama-5dcca245b34037eb15505ffd1d1b23213bedad9c.tar.xz
dramalama-5dcca245b34037eb15505ffd1d1b23213bedad9c.zip
Merge pull request #22 from zephex-alt/master
New movie source - autoembed.cc
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 8b88fd7..15c9f92 100644
--- a/src/app/kdrama/components/popular.jsx
+++ b/src/app/kdrama/components/popular.jsx
@@ -9,7 +9,7 @@ export default async function PopularDramas() {
return (
<div className={styles.Main}>
- <p className={styles.popDramasText}>Trending Dramas</p>
+ <h1 className={styles.popDramasText}>Trending Dramas</h1>
<div className={styles.AnimeContainer}>
{popular &&
@@ -25,8 +25,8 @@ export default async function PopularDramas() {
>
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
- width={200}
- height={310}
+ width={167}
+ height={267}
alt="Drama Poster"
/>
<p>{item.title}</p>
diff --git a/src/app/kdrama/components/recent.jsx b/src/app/kdrama/components/recent.jsx
index d28f348..9c5d452 100644
--- a/src/app/kdrama/components/recent.jsx
+++ b/src/app/kdrama/components/recent.jsx
@@ -8,7 +8,7 @@ export default async function RecentDramas() {
PreFetchAnimeInfo(popular);
return (
<div className={styles.Main}>
- <p className={styles.popDramasText}>Recent Releases</p>
+ <h1 className={styles.popDramasText}>Recent Releases</h1>
<div className={styles.AnimeContainer}>
{popular &&
@@ -24,8 +24,8 @@ export default async function RecentDramas() {
>
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
- width={190}
- height={270}
+ width={167}
+ height={267}
alt="Drama Poster"
/>
<p>{item.title}</p>