diff options
| author | zephex-alt <[email protected]> | 2024-05-04 18:18:30 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-04 18:18:30 +0000 |
| commit | a6c3531821aa10d80cc93d1809cbc45943c2c830 (patch) | |
| tree | 0b9fb3df41a4fb23283b730d699dacaf1ed9a7f3 /src/app/anime/top-airing/page.jsx | |
| parent | Update README.md (diff) | |
| download | dramalama-a6c3531821aa10d80cc93d1809cbc45943c2c830.tar.xz dramalama-a6c3531821aa10d80cc93d1809cbc45943c2c830.zip | |
UI changes to improved desktop experience
Diffstat (limited to 'src/app/anime/top-airing/page.jsx')
| -rw-r--r-- | src/app/anime/top-airing/page.jsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/app/anime/top-airing/page.jsx b/src/app/anime/top-airing/page.jsx index ab5d3af..ff329f6 100644 --- a/src/app/anime/top-airing/page.jsx +++ b/src/app/anime/top-airing/page.jsx @@ -6,6 +6,7 @@ import { preFetchAnimeInfo } from "../videoLinkfetcher"; export default async function Trending() {
const data = await test();
preFetchAnimeInfo(data);
+
return (
<div className={styles.TrendingContainer}>
<div className={styles.TrendingText}>
@@ -20,7 +21,10 @@ export default async function Trending() { href={`/anime/${item.id}`}
style={{ textDecoration: "none", color: "white" }}
>
- <div className={styles.trendingEntries} title={item.title}>
+ <div
+ className={styles.trendingEntries}
+ title={item.title}
+ >
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
className={styles.trendingImage}
|