mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Contribute page imporvements
This commit is contained in:
parent
e563e503c9
commit
ca12511e6d
2 changed files with 20 additions and 17 deletions
|
@ -84,35 +84,34 @@ export default function contribute() {
|
||||||
</a>
|
</a>
|
||||||
-n, és útbaigazítalak.
|
-n, és útbaigazítalak.
|
||||||
</div>
|
</div>
|
||||||
<Todos />
|
|
||||||
<div className={styles.description}>
|
<div className={styles.description}>
|
||||||
Itt írhatsz új todo-ra ötleteket, vagy jelezhetsz hogy egyikben
|
Itt írhatsz új todo-ra ötleteket, vagy jelezhetsz hogy egyikben
|
||||||
segítenél
|
segítenél
|
||||||
</div>
|
</div>
|
||||||
{renderNewTaskArea()}
|
{renderNewTaskArea()}
|
||||||
|
<hr />
|
||||||
|
<Todos />
|
||||||
<Sleep />
|
<Sleep />
|
||||||
<hr />
|
<hr />
|
||||||
<div className={styles.title}>Git repos</div>
|
<div className={styles.title}>Git repos</div>
|
||||||
<hr />
|
<hr />
|
||||||
<hr />
|
<hr />
|
||||||
<div className={styles.repos}>
|
<div className={styles.repos}>
|
||||||
<ul>
|
{Object.keys(repos.repos).map((key) => {
|
||||||
{Object.keys(repos.repos).map((key) => {
|
let repo = repos.repos[key]
|
||||||
let repo = repos.repos[key]
|
return (
|
||||||
return (
|
<a key={key} href={repo.href}>
|
||||||
<li key={key}>
|
{repo.description}
|
||||||
<a href={repo.href}>{repo.description}</a>
|
</a>
|
||||||
</li>
|
)
|
||||||
)
|
})}
|
||||||
})}
|
|
||||||
</ul>
|
|
||||||
<hr />
|
<hr />
|
||||||
<div style={{ textAlign: 'center' }}>
|
</div>
|
||||||
<img
|
<div style={{ textAlign: 'center' }}>
|
||||||
style={{ maxWidth: '100%', width: '400px' }}
|
<img
|
||||||
src={`${constants.siteUrl}img/bug.png`}
|
style={{ maxWidth: '100%', width: '400px' }}
|
||||||
/>
|
src={`${constants.siteUrl}img/bug.png`}
|
||||||
</div>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
|
@ -39,3 +39,7 @@
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.repos a {
|
||||||
|
margin: 0px 5px;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue