-
Notifications
You must be signed in to change notification settings - Fork 11
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 #73 from nerdvibe/feature/new-theme
Feature/new theme
- Loading branch information
Showing
82 changed files
with
5,338 additions
and
1,452 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
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
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,43 +1,40 @@ | ||
import { Row, Col } from "react-bootstrap"; | ||
import { Link } from "react-router-dom"; | ||
import Button from "./Button"; | ||
import Footer from "./Footer"; | ||
import Logo from "./logo/Logo"; | ||
|
||
const Homepage = () => ( | ||
<div className="block-container no-bg real-full-page-container center no-margin"> | ||
<Row> | ||
<Col xs={12} className="full-width-align-center"> | ||
<div className="mx-auto fit-content"> | ||
<Logo big={true} /> | ||
const Homepage = () => { | ||
return ( | ||
<div className="full-screen-container-center"> | ||
<div className="homepage-card glass-card flex md-flex-col"> | ||
<div className="half-card"> | ||
<div className="flex flex-col"> | ||
<Logo big /> | ||
<p className="text-center mt-3"> | ||
Access the power of the Mina Protocol Blockchain. | ||
</p> | ||
</div> | ||
</div> | ||
<div className="v-spacer" /> | ||
<h4 className="full-width-align-center "> | ||
Access the power of the Mina Protocol Blockchain. | ||
</h4> | ||
<div className="v-spacer" /> | ||
<Link to="/login"> | ||
<Button | ||
className="lightGreenButton__fullMono mx-auto" | ||
text="Access with Passphrase or Private key" | ||
/> | ||
</Link> | ||
<div className="v-spacer" /> | ||
<Link to="/ledger"> | ||
<Button | ||
className="lightGreenButton__fullMono mx-auto" | ||
text="Access with Ledger" | ||
/> | ||
</Link> | ||
<div className="v-spacer" /> | ||
<Link to="/register"> | ||
<Button | ||
className="lightGreenButton__fullMono mx-auto" | ||
text="Create a wallet" | ||
/> | ||
</Link> | ||
</Col> | ||
</Row> | ||
</div> | ||
); | ||
<div className="half-card flex flex-col"> | ||
<Link to={"register"}> | ||
<div className="button primary"> | ||
<span className="button-helper"></span> | ||
Create new wallet | ||
</div> | ||
</Link> | ||
<p className="w-100 text-center mt-4 mb-4">or</p> | ||
<Link to={"login-selection"}> | ||
<div className="button primary"> | ||
<span className="button-helper"></span> | ||
Log-in | ||
</div> | ||
</Link> | ||
</div> | ||
<div className="mt-4"> | ||
<Footer /> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Homepage; |
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.