-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from heidiyoora/zip
Complete home page makeover
- Loading branch information
Showing
49 changed files
with
811 additions
and
1,268 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
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.
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.
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.
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.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,9 +1,28 @@ | ||
import React from 'react' | ||
import React from 'react'; | ||
|
||
export default function aboutContainer() { | ||
return ( | ||
<div> | ||
|
||
<div id='about'> | ||
<div className='aboutFlexItem'> | ||
<img src='../assets/story.png'></img> | ||
<h3>Your Story</h3> | ||
<p>You are seeking an upgrade from your REST API framework to GraphQL but the evolution seems daunting.</p> | ||
</div> | ||
<div className='aboutFlexItem'> | ||
<img src='../assets/idea.png'></img> | ||
<h3>Our Vision</h3> | ||
<p>DraQLa is a GraphQL migration assistance tool that empowers developers to build GraphQL schemas, without writing any code.</p> | ||
</div> | ||
<div className='aboutFlexItem'> | ||
<img id='feature' src='../assets/logoclear.png'></img> | ||
<h3>Features</h3> | ||
<p> | ||
Custom GraphQL schema <br></br> | ||
Advice Overview <br></br> | ||
Interactive Visualizer <br></br> | ||
Testing Opportunities <br></br> | ||
</p> | ||
</div> | ||
</div> | ||
) | ||
); | ||
} |
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,18 @@ | ||
import React from 'react' | ||
|
||
export default function contactContainer() { | ||
return ( | ||
<div id='contact'> | ||
<div className ='contactDescription'> | ||
<hr /> | ||
<h3> Please feel free to submit <br></br>any comments or suggestions! </h3> | ||
</div> | ||
<form id='contactForm' className='topBefore' action='https://formspree.io/f/xyybqywd' method='POST'> | ||
<input id='name' type='text' name='name'placeholder='NAME'/> | ||
<input id='email' type='email' name='_replyto' placeholder='E-MAIL'/> | ||
<textarea id='messageBody' type='text' name='message' placeholder='MESSAGE'/> | ||
<input id="submit" type="submit" value="SUBMIT"/> | ||
</form> | ||
</div> | ||
); | ||
} |
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,22 @@ | ||
import React from 'react'; | ||
|
||
const medium = 'https://erkrebs.medium.com/thinking-of-migrating-from-rest-to-graphql-9f0e019c4582'; | ||
|
||
export default function featureContainer() { | ||
return ( | ||
<div className='featureContainer'> | ||
<div className='featureTitle'> | ||
<span>Featured on Medium</span> | ||
<hr></hr> | ||
</div> | ||
<div className='featureQuote'> | ||
<h1>"DraQLa makes migrating | ||
<br></br> | ||
<i>fang</i>-tastic!"</h1> | ||
</div> | ||
<a href={medium} target='_'> | ||
<img src='../assets/medium.png'></img> | ||
</a> | ||
</div> | ||
); | ||
} |
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,24 @@ | ||
import React from 'react'; | ||
|
||
export default function footerContainer() { | ||
const linkedin = 'https://www.linkedin.com/company/draqlabs'; | ||
const twitter = 'https://twitter.com/draQLabs'; | ||
const github = 'https://github.com/oslabs-beta/DraQLa/'; | ||
|
||
return ( | ||
<div className='footerContainer'> | ||
<hr/> | ||
<div className='footerIconContainer'> | ||
<a href={linkedin} target='_'> | ||
<img className='footerIcon' src='../assets/linkedin.png'></img> | ||
</a> | ||
<a href={twitter} target='_'> | ||
<img className='footerIcon' src='../assets/twitter.png'></img> | ||
</a> | ||
<a href={github} target='_'> | ||
<img className='footerIcon' src='../assets/github.png'></img> | ||
</a> | ||
</div> | ||
</div> | ||
); | ||
} |
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,26 @@ | ||
import React from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
import { useGenContext } from '../state/contexts'; | ||
|
||
export default function splashContainer() { | ||
const { generalDispatch } = useGenContext(); | ||
|
||
return ( | ||
<> | ||
<div id='stars'></div> | ||
<div id='stars2'></div> | ||
<div id='stars3'></div> | ||
<div id='homeTitle'> | ||
<Link to='/app' onClick={() =>{ | ||
setTimeout(generalDispatch({ type: 'OPEN_URI_MODAL' }), 1000); | ||
}}> | ||
<img src='../assets/logoclear.png' width='300px' height='300px' id='homelogo'></img> | ||
</Link> | ||
<img id='homelogotext' src='../assets/logotext.png'></img> | ||
</div> | ||
<section id="scrollDown" className="pointerDown"> | ||
<a id="scrollDownLink"href="#about"><span></span>scroll to learn more<br></br>or click on our logo to get started</a> | ||
</section> | ||
</> | ||
); | ||
} |
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
Oops, something went wrong.