-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
283 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from "react"; | ||
|
||
class Footer extends React.Component { | ||
render() { | ||
return ( | ||
<footer> | ||
<div className={'container'}> | ||
<div className={'flex flex-row'}> | ||
<div className={'basis-1/2'}> | ||
<div className={'flex flex-row items-center'}> | ||
<div className={'basis 1/2'}> | ||
<h2>Stay up<br/> | ||
to <span>date</span></h2> | ||
</div> | ||
<div className={'basis 1/2'}> | ||
Subscribe | ||
</div> | ||
</div> | ||
<hr/> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
} | ||
} | ||
|
||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import React from "react"; | ||
|
||
import video1 from "../../videos/video1.mp4" | ||
import video1webm from "../../videos/video1.webm" | ||
import video1hero from "../../images/video-section-1-hero.png" | ||
|
||
class VideoSection1 extends React.Component { | ||
render() { | ||
return ( | ||
<div className={'container'}> | ||
<div className={'flex flex-row items-center h-full'}> | ||
<div className={'basis-1/2 pr-64'}> | ||
<div className={'video-section-content'}> | ||
<h2>Create a vault</h2> | ||
<p> | ||
Create a vault, mint IST, and trade in the $10B+ interchain market while holding onto your Cosmos assets. | ||
</p> | ||
</div> | ||
</div> | ||
<div className={'basis-1/2 h-full'}> | ||
<div className={'video-container'}> | ||
<video autoPlay={false} preload={'none'} loop={true} playsInline={true} muted={true} poster={video1hero}> | ||
<source src={video1} type='video/mp4;codecs="hvc1"'/> | ||
<source src={video1webm} type="video/webm" /> | ||
</video> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
} | ||
|
||
export default VideoSection1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import React from "react"; | ||
|
||
import video3 from "../../videos/video3.mp4" | ||
import video3webm from "../../videos/video3.webm" | ||
import video3hero from "../../images/video-section-3-hero.png" | ||
|
||
class VideoSection3 extends React.Component { | ||
render() { | ||
return ( | ||
<div className={'container'}> | ||
<div className={'flex flex-row items-center h-full'}> | ||
<div className={'basis-1/2 pr-64'}> | ||
<div className={'video-section-content'}> | ||
<h2>Boost your BLD</h2> | ||
<p> | ||
Boost enhances your staked Agoric BLD tokens by allowing you to mint IST against your future staking rewards. | ||
</p> | ||
</div> | ||
</div> | ||
<div className={'basis-1/2 h-full'}> | ||
<div className={'video-container'}> | ||
<video autoPlay={true} preload={'none'} loop={true} playsInline={true} muted={true} poster={video3hero}> | ||
<source src={video3} type='video/mp4;codecs="hvc1"'/> | ||
<source src={video3webm} type="video/webm" /> | ||
</video> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
} | ||
|
||
export default VideoSection3; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
.section{ | ||
overflow: hidden; | ||
&.video-section{ | ||
.container{ | ||
padding:0 0 0 30px; | ||
height:100%; | ||
} | ||
|
||
.video-section-content{ | ||
width:100%; | ||
transform:translateY(-100%); | ||
transition: 750ms all ease-in-out 100ms; | ||
opacity:0; | ||
will-change: transform; | ||
} | ||
|
||
&.slide-up{ | ||
.video-section-content{ | ||
transform:translateY(100%); | ||
} | ||
} | ||
&.slide-down{ | ||
.video-section-content{ | ||
transform:translateY(-100%); | ||
} | ||
} | ||
&.active{ | ||
.video-section-content{ | ||
transform:translateY(0); | ||
opacity:1; | ||
} | ||
} | ||
|
||
&.leave{ | ||
transition: 0ms all ease-in-out 0ms; | ||
} | ||
|
||
.video-container{ | ||
position:absolute; | ||
height: 100%; | ||
width: 50vw; | ||
overflow: hidden; | ||
right: 0; | ||
|
||
video{ | ||
position:absolute; | ||
object-fit: cover; | ||
|
||
top: 50%; | ||
left: 50%; | ||
-webkit-transform: translateX(-50%) translateY(-50%); | ||
transform: translateX(-50%) translateY(-50%); | ||
min-width: 100%; | ||
min-height: 100%; | ||
width: auto; | ||
height: auto; | ||
z-index: -1000; | ||
overflow: hidden; | ||
|
||
|
||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
.section{ | ||
&.footer-section{ | ||
overflow: visible; | ||
} | ||
footer{ | ||
background: rgb(254,198,9); | ||
background: linear-gradient(51deg, rgba(254,198,9,1) 39%, rgba(239,90,32,1) 100%); | ||
|
||
.container{ | ||
padding:90px 0; | ||
position:relative; | ||
|
||
&:after{ | ||
width:40vw; | ||
padding-top:45%; | ||
background:url(../images/footer-illustration.png) no-repeat scroll bottom right transparent; | ||
background-size:contain; | ||
position:absolute; | ||
right:0; | ||
bottom:0; | ||
content:''; | ||
z-index:1; | ||
} | ||
} | ||
|
||
h2{ | ||
font-weight:bold; | ||
font-size: 52px; | ||
color: #000000; | ||
letter-spacing: -1px; | ||
line-height: 62px; | ||
text-transform:uppercase; | ||
|
||
span{ | ||
position: relative; | ||
|
||
&:after{ | ||
position: absolute; | ||
content:''; | ||
bottom:-10px; | ||
width:100%; | ||
display:inline-block; | ||
height:10px; | ||
background: #000000; | ||
left:0; | ||
} | ||
} | ||
} | ||
|
||
hr{ | ||
border:none; | ||
background:#000000; | ||
height:1px; | ||
width:100%; | ||
margin:60px 0; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.