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/kdrama/components | |
| 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/kdrama/components')
| -rw-r--r-- | src/app/kdrama/components/popular.jsx | 6 | ||||
| -rw-r--r-- | src/app/kdrama/components/recent.jsx | 6 |
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>
|