-
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 #7 from zkfairdomains/test
add deploy command
- Loading branch information
Showing
37 changed files
with
725 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
function Accordion() { | ||
return ( | ||
<div className="accordion"> | ||
<div className="accItem"> | ||
<div className="accHead"><span>Reverse record</span><em></em></div> | ||
<div className="accBody d-none"> | ||
<p>This designates one of your names to represent your account and act as your cross-platform web3 username and profile. You can only have one Primary Name per account and can change it at any time</p> | ||
<form action=""> | ||
<div className="frow"> | ||
<select id="select-domain" name="sd"> | ||
<option value="">Select Domain</option> | ||
<option value="">No Data</option> | ||
</select> | ||
</div> | ||
<div className="frow d-flex justify-content-end"><button className="cancel me-3">Cancel</button><button className="save">Save</button></div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Accordion; |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import Logo from './assets/images/zkfair.svg'; | ||
function Banner() { | ||
return ( | ||
<div className="banner"> | ||
<div> | ||
<h2>Omnichain<br />naming for wallets<br />websites on <span>Zkfair</span></h2> | ||
</div> | ||
<div> | ||
<img src={Logo} alt="" /> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Banner; |
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,9 @@ | ||
import MetaMaskLogo from './assets/images/metamask.svg'; | ||
|
||
function Connectwalletbutton() { | ||
return ( | ||
<button className="wallet-connect"><span>Connect Wallet</span><img src={MetaMaskLogo} alt="" /></button> | ||
); | ||
} | ||
|
||
export default Connectwalletbutton; |
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 @@ | ||
function Footer() { | ||
return ( | ||
<footer className="w-100"> | ||
<div className="container-fluid d-flex justify-content-between align-items-center"> | ||
<div className="footNav"> | ||
<ul className="d-flex"> | ||
<li><a href="">Terms</a></li> | ||
<li><a href="">Privacy</a></li> | ||
<li><a href="">Zkfair.io</a></li> | ||
</ul> | ||
</div> | ||
<div className="socialMedia"> | ||
<ul> | ||
<li><a href=""><img src="/assets/images/twitter.svg" alt="" /></a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
} | ||
|
||
export default Footer; |
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,37 @@ | ||
import Logo from './assets/images/zkfair.svg'; | ||
import MetaMaskLogo from './assets/images/metamask.svg'; | ||
function Header() { | ||
return ( | ||
<header> | ||
<div className="container-fluid d-flex align-items-center justify-content-between"> | ||
<h1 id="logo"><img src={Logo} alt="" /></h1> | ||
<div className="controls-content"> | ||
<nav> | ||
<ul className="d-flex"> | ||
<li><a href="/home">Domains</a></li> | ||
<li><a href="/registrant">My Profile</a></li> | ||
<li className="dropdown d-none"> | ||
<a className="d-block w-100 h-100 dropdown-toggle" href="javascript:;"><span class="tripledot"><em></em><em> </em><em></em></span></a> | ||
<ul className="dropdown-menu"> | ||
<li><a href="">favorites</a></li> | ||
<li><a href="">star</a></li> | ||
<li><a href="">blog</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</nav> | ||
<div className="network-select dropdown"> | ||
<a className="dropdown-toggle w-100 d-block" href="javascript:;">Zkfair Mainnet</a> | ||
<ul className="dropdown-menu"> | ||
<li><span className="color-red">Select Network</span></li> | ||
<li><a href="">Zkfair Mainnet</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<button className="wallet-connect"><span>Connect Wallet</span><img src={MetaMaskLogo} alt="" /></button><a className="mm" href="javascript:;"><span></span><span> </span><span></span></a> | ||
</div> | ||
</header> | ||
); | ||
} | ||
|
||
export default Header; |
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,13 @@ | ||
import Banner from "./Banner" | ||
import Search from "./Search"; | ||
function Home() { | ||
return ( | ||
<div className="centercontent"> | ||
<Banner /> | ||
<Search /> | ||
</div> | ||
|
||
); | ||
} | ||
|
||
export default Home; |
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 Search from "./Search"; | ||
import Accordion from './Accordion'; | ||
import Tabs from './Tabs'; | ||
import Connectwalletbutton from "./Connectwalletbutton"; | ||
function Registrantdomains() { | ||
return ( | ||
<div className="centercontent"> | ||
<Search /> | ||
<Accordion /> | ||
<Tabs /> | ||
<Connectwalletbutton /> | ||
|
||
|
||
</div> | ||
|
||
); | ||
} | ||
|
||
export default Registrantdomains; |
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,14 @@ | ||
function Sayac() { | ||
return ( | ||
<div className="preloader"> | ||
<div className="countdown"> | ||
<div id="countdown">60</div> | ||
<div id="cbar"></div> | ||
</div> | ||
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> | ||
<div className="d-none" id="buttons"><button className="green">Approve</button><button className="red">Cancel</button></div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Sayac; |
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 searchIcon from './assets/images/search-icon.svg'; | ||
function Search() { | ||
return ( | ||
<div className="search-content"> | ||
<form action=""> | ||
<img src={searchIcon} alt="" /><input type="text" placeholder="Search your domain name" /> | ||
<select id="domain-choise" name=""> | ||
<option value="zkfair">.zkf</option> | ||
<option value="other">.other</option> | ||
</select> | ||
<button>SEARCH</button> | ||
</form> | ||
<div className="search-result-content d-none"> | ||
<ul> | ||
<li className="copy-container"><span className="copy-text">search result 1</span><button className="green">Avaible</button></li> | ||
<li className="copy-container"><span className="copy-text">search result 2</span><button className="red" disabled="disabled">Not Avaible</button></li> | ||
<li className="copy-container"><span className="copy-text">search result 3</span><button className="green">Avaible</button></li> | ||
</ul> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Search; |
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,23 @@ | ||
function Tabs() { | ||
return ( | ||
<div className="tab-content"> | ||
<ul className="tab-nav"> | ||
<li><a href="#tab1">Registrant</a></li> | ||
<li><a href="#tab2">Controller</a></li> | ||
</ul> | ||
<div className="tab-pane-content"> | ||
<div className="pane" id="tab1"> | ||
<h2>My Domains</h2> | ||
<ul className="list"> | ||
<li>egeninpipisini.zkf</li> | ||
<li>ramazanyesin.zkf</li> | ||
<li>emredeizlesin.zkf</li> | ||
</ul> | ||
</div> | ||
<div className="pane" id="tab2">Controller</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Tabs; |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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.
Binary file not shown.
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.
Oops, something went wrong.