-
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.
Merge branch 'master' into dh-general-info
- Loading branch information
Showing
19 changed files
with
790 additions
and
16 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.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 './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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from 'react'; | ||
import './Footer.scss'; | ||
|
||
const Footer = () => { | ||
return ( | ||
<footer> | ||
<div className="footer-location"> | ||
<h3>Exit Plan</h3> | ||
<hr></hr> | ||
<br /> | ||
<p>123 W 12th Street,</p> | ||
<p>Denver, CO 12345</p> | ||
</div> | ||
<div className="footer-links"> | ||
<h3>Useful Links</h3> | ||
<hr></hr> | ||
<a>Customer Support</a> | ||
<br/> | ||
<a>Emergency Resources</a> | ||
<br/> | ||
<a>Directory</a> | ||
</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,33 @@ | ||
@import '../index.scss'; | ||
|
||
footer { | ||
background-color: $dark-blue; | ||
height: 100px; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
color: $off-white; | ||
align-items: center; | ||
font-family: Helvetica, sans-serif; | ||
} | ||
|
||
.footer-location { | ||
width: 125px; | ||
margin-left: 20px; | ||
} | ||
|
||
.footer-links { | ||
width: 125px; | ||
text-align: right; | ||
margin-right: 20px; | ||
} | ||
|
||
h3 { | ||
font-size: 18px; | ||
font-style: italic; | ||
} | ||
|
||
p, a { | ||
font-size: 12px; | ||
} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from 'react'; | ||
import './Main.scss'; | ||
import Hero from '../Hero/Hero.js'; | ||
import Intro from '../Intro/Intro.js'; | ||
import Link from '../Link/Link.js'; | ||
import Email from '../Email/Email.js'; | ||
|
||
|
||
const Main = () => { | ||
return ( | ||
<main> | ||
<Hero /> | ||
<Intro /> | ||
<Link /> | ||
<Email /> | ||
</main> | ||
) | ||
}; | ||
|
||
export default Main; |
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'; | ||
|
||
main { | ||
background-color: $off-white; | ||
height: 900px; | ||
display: flex; | ||
flex: 1; | ||
justify-content: space-between; | ||
} |