diff options
| author | real-zephex <[email protected]> | 2024-03-29 19:16:58 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-29 19:16:58 +0530 |
| commit | 641e62fd333cd7c3a82c12181eb0d35611c03df7 (patch) | |
| tree | 47c3cbaeb8b64b16bc06843a83bfa151d747f597 /src/app/anime/top-airing/page.jsx | |
| parent | Delete .github/workflows directory (diff) | |
| download | dramalama-641e62fd333cd7c3a82c12181eb0d35611c03df7.tar.xz dramalama-641e62fd333cd7c3a82c12181eb0d35611c03df7.zip | |
fixes and improvements: dramalaam is no longer hosted on koyeb cuz of
high latency issues.
Diffstat (limited to 'src/app/anime/top-airing/page.jsx')
| -rw-r--r-- | src/app/anime/top-airing/page.jsx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/app/anime/top-airing/page.jsx b/src/app/anime/top-airing/page.jsx index 5536870..3d26d88 100644 --- a/src/app/anime/top-airing/page.jsx +++ b/src/app/anime/top-airing/page.jsx @@ -1,13 +1,19 @@ -import "./trending.css"; +import styles from "./trending.module.css"; import Image from "next/image"; import Link from "next/link"; +import { HiTrendingUp } from "react-icons/hi"; export default async function Trending() { const data = await test(); return ( <div className="trendingContainer"> - <p className="trendingText">Trending</p> + <div className={styles.TrendingText}> + <p>Trending</p> + <span> + <HiTrendingUp size={26} color="aqua" /> + </span> + </div> <div className="trending"> {data && |