Skip to content

Commit

Permalink
Updated CSS and documentation links
Browse files Browse the repository at this point in the history
Increased the minimum height in the CSS file for better layout handling. Also, swapped the positions of 'Privacy Engine' and 'Sharded Storage' sections on the documentation page to improve user navigation. The content within these sections has been updated accordingly to match their new titles.
  • Loading branch information
snjax committed Apr 15, 2024
1 parent b837460 commit ef307a9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 26 deletions.
16 changes: 6 additions & 10 deletions src/components/Footer/index.js
Original file line number Diff line number Diff line change
@@ -1,29 +1,25 @@
import React from 'react';
import logo from '/static/img/ZEROpool_NEW_logo_wh.png'
import Github from '/static/img/Github-icon.svg'
import Medium from '/static/img/Medium.svg'
import Telegram from '/static/img/Telegram.svg'
import Twitter from '/static/img/Twitter.svg'


const Footer = () => {
return (
<footer className="main-footer" id="contacts">
<div className="main-container main-footer__container">
<a className="main-footer__logo-link" href="/">
<img className="main-footer__logo" src={logo} alt="zeropool"/>
<img className="main-footer__logo" src='/img/ZEROpool_NEW_logo_wh.png' alt="zeropool"/>
</a>
<div className="main-footer__social">
<a className="main-footer__social-link" href="https://github.com/zeropoolnetwork">
<Github className="main-footer__social-img" />
<img className="main-footer__social-img" src='/img/Github-icon.svg' alt="zeropool"/>
</a>
<a className="main-footer__social-link" href="https://medium.com/zeropool">
<Medium className="main-footer__social-img" />
<img className="main-footer__social-img" src='/img/Medium.svg' alt="zeropool"/>
</a>
<a className="main-footer__social-link" href="https://twitter.com/ZeroPoolNetwork">
<Twitter className="main-footer__social-img" />
<img className="main-footer__social-img" src='/img/Twitter.svg' alt="zeropool"/>
</a>
<a className="main-footer__social-link" href="https://t.me/ZeroPoolCommunity">
<Telegram className="main-footer__social-img" />
<img className="main-footer__social-img" src='/img/Telegram.svg' alt="zeropool"/>
</a>
</div>
</div>
Expand Down
3 changes: 1 addition & 2 deletions src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@
display: flex;
flex-direction: column;
justify-content: center;
min-height: 1000px;
height: 100vh;
min-height: 100vh;
padding-top: 110px;
background: var(--bg-color-dark);
color: white;
Expand Down
28 changes: 14 additions & 14 deletions src/pages/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,44 +12,44 @@ const Docs = () => {
<h1 className="text--center">Welcome to the ZeroPool Documentation Site</h1>
<div className="row">
<div className="col col--6">
<Link to="/docs/privacy-engine/" className="card card--full-height">
<Link to="/docs/sharded-storage" className="card card--full-height">
<div className="card__header">
<h3>Privacy Engine</h3>
<h3>Sharded Storage</h3>
</div>
<div className="card__body">
<p>Explore our privacy-preserving technologies</p>
<p>Learn about our decentralized storage solution, featuring:</p>
<ul>
<li>Zero-Knowledge Proofs</li>
<li>Fawkes-crypto circuit builder</li>
<li>RS Codes</li>
<li>PoST mining</li>
<li>Recursive rollups</li>
</ul>
<div className="card__image">
<img src="/img/privacy-engine.svg" alt="Privacy Engine" />
<img src="/img/sharded-storage.svg" alt="Sharded Storage" />
</div>
</div>
<div className="card__footer">
<button className="button button--primary">Get Started</button>
<button className="button button--primary">Explore Docs</button>
</div>
</Link>
</div>
<div className="col col--6">
<Link to="/docs/sharded-storage" className="card card--full-height">
<Link to="/docs/privacy-engine/" className="card card--full-height">
<div className="card__header">
<h3>Sharded Storage</h3>
<h3>Privacy Engine</h3>
</div>
<div className="card__body">
<p>Learn about our decentralized storage solution, featuring:</p>
<p>Explore our privacy-preserving technologies</p>
<ul>
<li>Zero-Knowledge Proofs</li>
<li>RS Codes</li>
<li>PoST mining</li>
<li>Recursive rollups</li>
<li>Fawkes-crypto circuit builder</li>
</ul>
<div className="card__image">
<img src="/img/sharded-storage.svg" alt="Sharded Storage" />
<img src="/img/privacy-engine.svg" alt="Privacy Engine" />
</div>
</div>
<div className="card__footer">
<button className="button button--primary">Explore Docs</button>
<button className="button button--primary">Get Started</button>
</div>
</Link>
</div>
Expand Down

0 comments on commit ef307a9

Please sign in to comment.