aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/page.jsx
blob: 209105b1ae0f7953ad50b610a5b1df7e8ea88547 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import styles from "./styles/anime.module.css";
import PopularAnimes from "./components/popularAnimes";
import RecentAnimes from "./components/recentEpisodes";
import TopAiringAnimes from "./components/topAiring";
import SearcBar from "./components/search";
const AnimeHomepage = async () => {
	return (
		<main className={styles.Main}>
			<SearcBar />
			<TopAiringAnimes />
			<hr style={{ marginTop: 15, borderColor: "gray" }} />
			<RecentAnimes />
			<hr style={{ marginTop: 15, borderColor: "gray" }} />
			<PopularAnimes />
		</main>
	);
};

export default AnimeHomepage;