-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
60 lines (50 loc) · 1.35 KB
/
App.js
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import './App.css';
import Nav from './navbar'
import Slider from './slider'
import React from "react";
import Page from './paginate.jsx';
import Products from './hit'
import Footer from './footer'
import Slide1 from './slider1'
import Slide2 from './slider2'
import Slide3 from './slider3'
import Slide4 from './slider4'
import Slide5 from './slide5'
function App() {
return (
<>
<Nav />
<Slider />
<h2 className = "j1"><strong>All Time Hits</strong></h2>
<div className = "yasin">
<Products />
</div>
<h2 className = "j1"><strong>Trending Now</strong></h2>
<div className = "yasin">
<Slide1 />
</div>
<h2 className = "j1"><strong>New Releases</strong></h2>
<div className = "yasin">
<Slide2 />
</div>
<h2 className = "j1"><strong>Web Series</strong></h2>
<div className = "yasin">
<Slide3 />
</div>
<h2 className = "j1"><strong>Coming Soon</strong></h2>
<div className = "yasin">
<Slide4 />
</div>
<h2 className = "j1"><strong>Popular Games</strong></h2>
<div className = "yasin">
<Slide5 />
</div>
<div className = "yasin2">
<h2 className = "j1"><strong>Latest Updates</strong></h2>
<Page />
</div>
<Footer />
</>
);
}
export default App;