Created
February 2, 2018 03:28
-
-
Save SamWSoftware/eb60452ea8ba29374449f172b2a254bb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const Landing = () => { | |
return ( | |
<div className="center background-img"> | |
<div className="center-box"> | |
<div className="white-box hpTitle"> | |
<h1>Where will your shoes take you?</h1> | |
</div> | |
<div className="row"> | |
<div className="col l3 offset-l2 m5 offset-m1 s10 offset-s1"> | |
<Link to="./products/womens"> | |
<h4 className="white-box"> | |
<strong>SHOP WOMEN</strong> | |
</h4> | |
</Link> | |
</div> | |
<div className="col l3 offset-l2 m5 offset-m0.5 s10 offset-s1"> | |
<Link to="./products/mens"> | |
<h4 className="white-box"> | |
<strong>SHOP MEN</strong> | |
</h4> | |
</Link> | |
</div> | |
</div> | |
</div> | |
</div> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment