Homepage update
ci/woodpecker/push/woodpecker Pipeline was successful Podrobnosti

This commit is contained in:
tree 2022-10-14 11:33:48 +02:00
rodič 44840624c2
revize 6fc01da99d
5 změnil soubory, kde provedl 43 přidání a 17 odebrání

Zobrazit soubor

@ -159,6 +159,10 @@ const config = {
label: 'Matrix (chat)', label: 'Matrix (chat)',
href: 'https://matrix.gwei.cz', href: 'https://matrix.gwei.cz',
}, },
{
label: 'Mastodon',
href: 'https://social.gwei.cz',
},
{ {
label: 'Twitter', label: 'Twitter',
href: 'https://twitter.com/gweicz', href: 'https://twitter.com/gweicz',
@ -166,8 +170,12 @@ const config = {
], ],
}, },
{ {
title: 'Projekty', title: 'Projekty a služby',
items: [ items: [
{
label: 'Status',
href: 'https://status.gwei.cz',
},
{ {
label: 'BohemianDAO', label: 'BohemianDAO',
href: 'https://bohemiandao.cz', href: 'https://bohemiandao.cz',

Zobrazit soubor

@ -30,7 +30,7 @@ Pro průzkum a vizualizaci můžete využít [BrightID Explorer](https://explore
| Jméno | Matrix | | Jméno | Matrix |
| --------------------------------------------------- | -------------- | | --------------------------------------------------- | -------------- |
| [@kleinpetr](https://forum.gwei.cz/u/kleinpetr) | ? | | [@kleinpetr](https://forum.gwei.cz/u/kleinpetr) | ? |
| [@tree](https://forum.gwei.cz/u/tree) | @tree:gwei.cz | | [@tree](https://forum.gwei.cz/u/tree) | [@tree:gwei.cz](https://matrix.to/#/@tree:gwei.cz) |
| [@coinmandeer](https://forum.gwei.cz/u/coinmandeer) | ? | | [@coinmandeer](https://forum.gwei.cz/u/coinmandeer) | ? |
## Matrix kanál ## Matrix kanál

Zobrazit soubor

@ -48,10 +48,10 @@ function Feature({Svg, title, description, href, buttonText, buttonHref, inversi
return ( return (
<div className={clsx('col col--4')}> <div className={clsx('col col--4')}>
<div className="text--center"> <div className="text--center" style={{paddingTop: '3em'}}>
<Link href={buttonHref}> <Link href={buttonHref}>
{inversible {inversible
? <Svg className={styles.featureSvg} role="img" style={colorMode === 'dark' ? { filter: 'invert(100%)' } : {}} /> ? <Svg className={styles.featureSvg} role="img" style={colorMode === 'dark' ? { filter: 'invert(100%);' } : {}} />
: <Svg className={styles.featureSvg} role="img" /> : <Svg className={styles.featureSvg} role="img" />
} }
</Link> </Link>

Zobrazit soubor

@ -1,11 +1,11 @@
.features { .features {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 2rem 0; padding: 1rem 0 4rem 0;
width: 100%; width: 100%;
} }
.featureSvg { .featureSvg {
height: 200px; height: 125px;
width: 200px; width: 125px;
} }

Zobrazit soubor

@ -10,18 +10,36 @@ import styles from './index.module.css';
function HomepageHeader() { function HomepageHeader() {
const {siteConfig} = useDocusaurusContext(); const {siteConfig} = useDocusaurusContext();
return ( return (
<header className={clsx('hero hero--primary', styles.heroBanner)}> <header className={clsx('hero hero--dark', styles.heroBanner)}>
<div className="container"> <div className="container">
<h1 className="hero__title">Gwei.cz - Česko/Slovenská Ethereum komunita</h1> <div class="row">
<div class="col col--3">
<div class="col-demo" style={{flexShrink: 0}}>
<img src="/img/logo.png" style={{height:'300px', width: '300px', maxWidth: '300px'}}></img>
</div>
</div>
<div class="col col--9" style={{display: 'flex', alignItems: 'center'}}>
<div class="col-demo container">
<h1 className="hero__title">Gwei.cz - Česko-Slovenská Ethereum komunita</h1>
<p className="hero__subtitle">{siteConfig.tagline}</p> <p className="hero__subtitle">{siteConfig.tagline}</p>
{/*<div className={styles.buttons}> <div className={styles.buttons} style={{display:'grid', gridAutoFlow: 'column', gridColumnGap: '2em'}}>
<Link <Link
className="button button--secondary button--lg" className="button button--secondary button--lg"
href="https://forum.gwei.cz"> href="/komunita">
Přejít na fórum Kdo jsme?
</Link>
<Link
className="button button--secondary button--lg"
href="/projekty">
Co děláme?
</Link> </Link>
</div>*/}
</div> </div>
</div>
</div>
</div>
</div>
</header> </header>
); );
} }