HomePage.js 575 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
import Header from "../components/Header";
import SubNav from "../components/Navs/SubNav";
3
import MainNav from "../components/Navs/MainNav";
4
import BoxOffice from "../components/BoxOffice";
Kim, Subin's avatar
Kim, Subin committed
5
import Collection from "../components/Collection";
6
7
8
9
import Footer from "../components/Footer";

const HomePage = () => {
    return (
Jiwon Yoon's avatar
Jiwon Yoon committed
10
11
12
        <div className="" style={{backgroundColor:"black"}}>
            <SubNav/>
            <Header/>
13
            <MainNav />
14
            <BoxOffice />
Kim, Subin's avatar
Kim, Subin committed
15
            <Collection />
16
17
18
19
20
21
            <Footer />
        </div>
    )
}

export default HomePage