diff options
| author | real-zephex <[email protected]> | 2024-05-08 10:13:36 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-08 10:13:36 +0530 |
| commit | 5dcca245b34037eb15505ffd1d1b23213bedad9c (patch) | |
| tree | feb9a8d943a7c91076d5ff691fba653dc5b4d36c /src/app/anime/top-airing/page.jsx | |
| parent | Delete .github/workflows/eslint.yml (diff) | |
| parent | minor css fixes and added a new source for movies (diff) | |
| download | dramalama-5dcca245b34037eb15505ffd1d1b23213bedad9c.tar.xz dramalama-5dcca245b34037eb15505ffd1d1b23213bedad9c.zip | |
Merge pull request #22 from zephex-alt/master
New movie source - autoembed.cc
Diffstat (limited to 'src/app/anime/top-airing/page.jsx')
| -rw-r--r-- | src/app/anime/top-airing/page.jsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/anime/top-airing/page.jsx b/src/app/anime/top-airing/page.jsx index a0fc302..0102371 100644 --- a/src/app/anime/top-airing/page.jsx +++ b/src/app/anime/top-airing/page.jsx @@ -6,11 +6,11 @@ import { preFetchAnimeInfo } from "../videoLinkfetcher"; export default async function Trending() {
const data = await test();
preFetchAnimeInfo(data);
-
+
return (
<div className={styles.TrendingContainer}>
<div className={styles.TrendingText}>
- <p>Trending</p>
+ <h1>Trending</h1>
</div>
<div className={styles.trending}>
@@ -28,8 +28,8 @@ export default async function Trending() { <Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
className={styles.trendingImage}
- width={210}
- height={310}
+ width={167}
+ height={267}
alt="Drama"
priority
/>
|