-
Notifications
You must be signed in to change notification settings - Fork 1
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 #1 from julianabal/structure
Structure
- Loading branch information
Showing
24 changed files
with
279 additions
and
88 deletions.
There are no files selected for viewing
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.
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.
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,18 @@ | ||
import "./styles/Decentralized.sass"; | ||
|
||
function Decentralized() { | ||
return ( | ||
<section id="decentralized" className="overflow-hidden relative min-h-screen bg-left bg-no-repeat bg-cover bg-black flex flex-col-reverse md:flex-row"> | ||
<div className="container flex items-center"> | ||
<div className="textContainer flex flex-col justify-center items-start gap-10 relative"> | ||
<h1 className="text-4xl xl:text-6xl font-bold">Decentralized</h1> | ||
<p>The Ideal Network is a blockchain that uses a novel consensus mechanism. It produces publicly verifiable secret keys in each block header.</p> | ||
<button className="cta">Decentralize the universe</button> | ||
</div> | ||
</div> | ||
<img src="/images/Decentralized.png" className="decentralized" /> | ||
</section> | ||
); | ||
} | ||
|
||
export default Decentralized; |
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,24 +1,17 @@ | ||
import "./styles/Header.sass"; | ||
|
||
function Header() { | ||
return ( | ||
<header> | ||
<nav> | ||
<ul> | ||
<li> | ||
<a href="/docs">Docs</a> | ||
</li> | ||
<li> | ||
<a href="/blog">Blog</a> | ||
</li> | ||
<li> | ||
<a href="https://github.com/">GitHub</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
<h1>Ideal Network</h1> | ||
<strong>Encryption to the Future</strong> | ||
<a href="https://etf.idealabs.network/docs/intro">Learn more</a> | ||
<header className="fixed w-full bg-black bg-opacity-70 z-30"> | ||
<div className="container"> | ||
<nav> | ||
<a href="/" className="brand py-4"> | ||
<img src="/images/onecolor-white-logo.svg" /> | ||
</a> | ||
</nav> | ||
</div> | ||
</header> | ||
); | ||
} | ||
|
||
export default 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,17 @@ | ||
import "./styles/Hero.sass"; | ||
|
||
function Hero() { | ||
return ( | ||
<section id="hero" className="min-h-screen bg-center bg-no-repeat bg-cover"> | ||
<div className="container flex items-center"> | ||
<div className="textContainer flex flex-col justify-center items-start gap-10"> | ||
<h1 className="text-4xl xl:text-6xl font-bold">Proper on-chain randomness</h1> | ||
<p>Our cutting-edge advanced algorithm enhances security, fairness, and unpredictability, essential for decentralized applications, smart contracts, and more.</p> | ||
<button className="cta">Roll the dice</button> | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
} | ||
|
||
export default Hero; |
Oops, something went wrong.