blob: 24c2ed94cf1fc0d1c3669333ed960587740da33e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import POPULAR_MOVIES from "./components/popular";
import TREDNING_MOVIES from "./components/trending";
import SEARCH_COMPONENT from "./components/search";
import styles from "./styles/page.module.css";
export default async function MOVIE_HOME() {
return (
<main className={styles.MovieMain}>
<SEARCH_COMPONENT />
<POPULAR_MOVIES />
<br />
<TREDNING_MOVIES />
<br />
<br />
<br />
</main>
);
}
|