blob: 8fdbf86bbe0c1506447f7678d1e3995267f89a40 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import styles from "./anime.module.css";
import Trending from "./top-airing/page";
import Releases from "./recent/page";
import Popular from "./popular/page";
import Input from "./search/page";
export default async function Anime() {
return (
<div className={styles.main}>
<Input />
<Trending />
<br />
<Releases />
<br />
<Popular />
</div>
);
}
|