First stable application according to tutorial
This commit is contained in:
parent
f5e4be85c4
commit
8d451a87b6
33 changed files with 1090 additions and 113 deletions
31
frontend/src/components/HeroSection.js
Normal file
31
frontend/src/components/HeroSection.js
Normal file
|
@ -0,0 +1,31 @@
|
|||
import React from 'react';
|
||||
import '../App.css';
|
||||
import { Button } from './Button';
|
||||
import './HeroSection.css';
|
||||
|
||||
function HeroSection() {
|
||||
return (
|
||||
<div className='hero-container'>
|
||||
<h1>ADVENTURE AWAITS</h1>
|
||||
<p>What are you waiting for?</p>
|
||||
<div className="hero-btns">
|
||||
<Button
|
||||
className='btns'
|
||||
buttonStyle='btn--outline'
|
||||
buttonSize='btn--large'
|
||||
>
|
||||
GET STARTED
|
||||
</Button>
|
||||
<Button
|
||||
className='btns'
|
||||
buttonStyle='btn--primary'
|
||||
buttonSize='btn--large'
|
||||
>
|
||||
WATCH TRAILER <i className='far fa-play-circle' />
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default HeroSection
|
Loading…
Add table
Add a link
Reference in a new issue