-
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.
Merge pull request #13 from irulabs/restyle
Restyle homepage
- Loading branch information
Showing
18 changed files
with
186 additions
and
41 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
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,21 @@ | ||
import React from 'react'; | ||
|
||
const About = () => { | ||
return ( | ||
<section className="ph4 ph6-m ph7-l pt6 pb5 bb b--near-white bw3 bg-near-white bg-yellow"> | ||
|
||
<h1 className="f1 fw6 tl dark-pink mb1 mw7-ns"> | ||
We build products to <span className="underline underline-yellow">delight</span> users<sup className="f2">*</sup> | ||
</h1> | ||
|
||
<p className="dark-pink f7 mt0">*<span className="i">disclaimer</span>: there's more to it than code.</p> | ||
|
||
<p className="mw7-ns pt3 mid-gray near-black fw6"> | ||
Donec sed odio dui. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. | ||
</p> | ||
|
||
</section> | ||
) | ||
} | ||
|
||
export default About; |
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
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,19 @@ | ||
import React from 'react'; | ||
|
||
import checkbox from '../assets/icons/checkbox.svg'; | ||
|
||
const CheckboxItem = ({ title, text}) => { | ||
return ( | ||
<div className="flex items-center mw7-ns"> | ||
<img src={ checkbox } className="h2p5 pl4" alt="filled-in checkbox icon"/> | ||
<div className="flex flex-column tl pl3"> | ||
<h4 className="mb1">{ title }</h4> | ||
|
||
<p className="mt0">{ text }</p> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
|
||
export default CheckboxItem; |
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
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,32 @@ | ||
import React from 'react'; | ||
|
||
import CheckboxItem from './CheckboxItem'; | ||
|
||
const OurWay = () => { | ||
return ( | ||
<section className="ph4 ph6-m ph7-l pv5 bb b--near-white bw3"> | ||
<h2 className="underline underline-yellow dark-pink tl">Our Way</h2> | ||
|
||
<div className="flex flex-column"> | ||
|
||
<CheckboxItem | ||
title="Crafted" | ||
text="How we build it is important. Taking care early on means that we build products which are scalable by default. As your userbase grows, the code we crafted for you will serve you well." | ||
/> | ||
|
||
<CheckboxItem | ||
title="Modern Tech" | ||
text="We love coding, so we're on top of the ever-changing landscape of web development. We build products in the best way possible, using tech that is appropriate for the job." | ||
/> | ||
|
||
<CheckboxItem | ||
title="Iterate by Default" | ||
text="We build what's needed first, then iterate based on data. This is only possible by developers and app owners communicating frequently and directly. That's why you'll never have to go through an account manager to talk about your product." | ||
/> | ||
</div> | ||
</section> | ||
) | ||
} | ||
|
||
|
||
export default OurWay; |
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
Oops, something went wrong.