aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/page.jsx
blob: 33a3373eb2ce7107f54b88415842fc57bcfb55f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import styles from "./anime.module.css";
import Trending from "./top-airing/page";
import Releases from "./recent/page";
import Input from "./search/page";

export default async function Anime() {
	return (
		<div className={styles.main}>
			<Input />
			<Trending />
			<Releases />
		</div>
	);
}