-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
1e2be64
commit dd4cc3b
Showing
13 changed files
with
137 additions
and
4 deletions.
There are no files selected for viewing
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,12 @@ | ||
import React from 'react'; | ||
import './Email.scss'; | ||
|
||
const Email = () => { | ||
return ( | ||
<div className="email"> | ||
|
||
</div> | ||
) | ||
}; | ||
|
||
export default Email; |
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,9 @@ | ||
@import '../index.scss'; | ||
|
||
.email { | ||
background-color: $off-white; | ||
display: flex; | ||
justify-content: space-between; | ||
height: 300px; | ||
} | ||
|
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
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,12 @@ | ||
import React from 'react'; | ||
import './Hero.scss'; | ||
|
||
const Hero = () => { | ||
return ( | ||
<div className="hero"> | ||
<img className="hero-logo" src="./assets/Exit_Plan_Hero.png" alt="exit plan hero"/> | ||
</div> | ||
) | ||
}; | ||
|
||
export default Hero; |
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,16 @@ | ||
@import '../index.scss'; | ||
|
||
.hero { | ||
background-color: $off-white; | ||
display: flex; | ||
justify-content: space-between; | ||
height: 400px; | ||
} | ||
|
||
.hero-logo { | ||
width: 100%; | ||
margin-top: 3%; | ||
padding-left: 10%; | ||
padding-right: 10%; | ||
margin-bottom: 3%; | ||
} |
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,17 @@ | ||
import React from 'react'; | ||
import './Intro.scss'; | ||
|
||
const Intro = () => { | ||
return ( | ||
<div className="intro"> | ||
<div className="intro-text"> | ||
some text | ||
</div> | ||
<div className="intro-video"> | ||
some more text | ||
</div> | ||
</div> | ||
) | ||
}; | ||
|
||
export default Intro; |
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,20 @@ | ||
@import '../index.scss'; | ||
|
||
.intro { | ||
background-color: $off-white; | ||
display: flex; | ||
justify-content: space-between; | ||
height: 300px; | ||
flex-direction: row; | ||
font-family: Helvetica, sans-serif; | ||
} | ||
|
||
.intro-text { | ||
width: 50%; | ||
background: green; | ||
} | ||
|
||
.intro-video { | ||
width: 50%; | ||
background: purple; | ||
} |
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,12 @@ | ||
import React from 'react'; | ||
import './Link.scss'; | ||
|
||
const Link = () => { | ||
return ( | ||
<div className="link"> | ||
|
||
</div> | ||
) | ||
}; | ||
|
||
export default Link; |
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,8 @@ | ||
@import '../index.scss'; | ||
|
||
.link { | ||
background-color: $light-blue; | ||
display: flex; | ||
justify-content: space-between; | ||
height: 300px; | ||
} |
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