Skip to content

Commit

Permalink
Merge pull request pathwar#118 from cdeleeuwe/new-logo
Browse files Browse the repository at this point in the history
feat: Update coming soon page with new logo
  • Loading branch information
moul authored Sep 2, 2019
2 parents db95a44 + ac70f32 commit 0332c82
Show file tree
Hide file tree
Showing 4 changed files with 205 additions and 5 deletions.
Binary file added web/src/images/new_pathwar-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
199 changes: 199 additions & 0 deletions web/src/images/new_pathwar-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions web/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,8 @@ export default ({ data }) => {

<div className={styles.content}>
<div><Img fixed={logo} alt="Pathwar Logo" /></div>
<h1>{title}</h1>
<p>{description}</p>
<h2>Coming Soon..</h2>
<h2>COMING SOON..</h2>
</div>
</div>
)
Expand All @@ -53,7 +52,7 @@ export const query = graphql`
baseUrl
}
}
file(relativePath: { eq: "images/pathwar-logo.png" }) {
file(relativePath: { eq: "images/new_pathwar-logo.png" }) {
childImageSharp {
fixed(width: 200, height: 200) {
...GatsbyImageSharpFixed
Expand Down
6 changes: 4 additions & 2 deletions web/src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

.page {
font-family: 'Rubik', sans-serif;
background: #f3f3f3;
background: radial-gradient(#212138,#000a15);
color:#fff;
height: 100vh;
width: 100%;
display: flex;
Expand All @@ -22,10 +23,11 @@ h1 {
}

h2 {
margin-top: 50px;
margin-top: 10px;
}

p {
margin-top: 2.5rem;
font-size: 130%;
font-weight: 300;
}

0 comments on commit 0332c82

Please sign in to comment.