-
-
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 #96 from MLH-Fellowship/staging
Final Merge from Staging to Main
- Loading branch information
Showing
11 changed files
with
113 additions
and
20 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
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
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
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,85 @@ | ||
import React from "react"; | ||
import { Grid } from "@material-ui/core"; | ||
|
||
const Mtmsk = () => { | ||
return ( | ||
<div style={{ margin: "25px", display: "flex", justifyContent: "center" }}> | ||
<div> | ||
<center> | ||
<h1> | ||
Please Install Metamask Extension, in order to proceed with | ||
Cryptodrive. | ||
</h1> | ||
<br /> | ||
Dont worry we will help you out if you are just getting started. | ||
<br /> <br /> | ||
<br /> | ||
<b> | ||
{" "} | ||
Click on the metamask icon (orange fox) below to install metamask | ||
extension. | ||
</b> | ||
<br /> <br /> | ||
<br /> | ||
<a | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
href="https://metamask.io/download.html" | ||
> | ||
<img | ||
src="https://cdn.iconscout.com/icon/free/png-512/metamask-2728406-2261817.png" | ||
height="150" | ||
width="150" | ||
alt="MetamaskIcon" | ||
/> | ||
</a> | ||
<br /> | ||
<br /> <br /> | ||
</center> | ||
<h5>Step 1: Make an Account on Metamask Extension</h5> | ||
<h5> | ||
Step 2: Copy your Account Address It looks like this:{" "} | ||
<code>ox0C0D.....60A</code> | ||
</h5> | ||
<h5> | ||
Step 3: You do need some ethers, to start Cryptodrive, lets have | ||
faucet ethers from Rinkeby Testnet | ||
</h5> | ||
<h5>Step 4: You need tweet your address, dont worry its safe. </h5> | ||
<h5> | ||
Step 5: You need paste that tweet link, here{" "} | ||
<a | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
href="https://faucet.rinkeby.io/" | ||
> | ||
https://faucet.rinkeby.io/ | ||
</a>{" "} | ||
</h5> | ||
<h5> | ||
Step 6: Now you have your ethers, in Metamask, you can check on to | ||
extension | ||
</h5> | ||
<h5> | ||
Note: If you are not able see ethers, just click on Rinkeby Test | ||
Network, just above your Account Address, from the drop down menu.{" "} | ||
</h5> | ||
<br /> | ||
<h2> | ||
Hurray!! You did it. | ||
<br /> | ||
Head over to{" "} | ||
<a | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
href="https://www.cryptodrive.tech" | ||
> | ||
Cryptodrive.tech | ||
</a>{" "} | ||
and be the owner of your own data. | ||
</h2> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
export default Mtmsk; |