-
Notifications
You must be signed in to change notification settings - Fork 0
/
HeroSection.js
46 lines (30 loc) · 893 Bytes
/
HeroSection.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
import React from 'react';
import '../App.css';
import { Button } from './Button';
import './HeroSection.css';
function HeroSection() {
return (
<div className='hero-container'>
<video src='/videos/video-3.mp4' autoPlay loop muted />
<h1>Have you Registered?</h1>
<p>Watch The Newest Trailers</p>
<p>Create Your Own Watchlist</p>
<p>Save Your Favorites</p>
<p>Join Movie Nights</p>
<p></p>
<div className='hero-btns'>
<Button
className='btns'
buttonStyle='btn--outline'
buttonSize='btn--large'
>
Try it Free
</Button>
</div>
<form className='form'>
<input class="input"type="text" name="s" placeholder="Search"/>
</form>
</div>
);
}
export default HeroSection;