blob: 63fcd059f45468ac3ebd051a6042022c7164a64a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import styles from "./styles/web-series.module.css";
import Pages from "./components/HomePageModules";
import SearchBar from "./components/searchBar";
export default async function SeriesHomepage() {
return (
<main className={styles.main}>
<SearchBar />
<Pages type={"popular"} />
<hr
style={{
borderColor: "grey",
marginTop: 15,
marginBottom: -15,
}}
/>
<Pages type={"trending"} />
<hr
style={{
borderColor: "grey",
marginTop: 15,
marginBottom: -15,
}}
/>
<Pages type={"top"} />
</main>
);
}
|