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

export default async function Anime() {
	return (
		<div>
			<Input />
			<Trending />
			<br />
			<Releases />
		</div>
	);
}