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>
|
||||
-n, és útbaigazítalak.
|
||||
</div>
|
||||
<Todos />
|
||||
<div className={styles.description}>
|
||||
Itt írhatsz új todo-ra ötleteket, vagy jelezhetsz hogy egyikben
|
||||
segítenél
|
||||
</div>
|
||||
{renderNewTaskArea()}
|
||||
<hr />
|
||||
<Todos />
|
||||
<Sleep />
|
||||
<hr />
|
||||
<div className={styles.title}>Git repos</div>
|
||||
<hr />
|
||||
<hr />
|
||||
<div className={styles.repos}>
|
||||
<ul>
|
||||
{Object.keys(repos.repos).map((key) => {
|
||||
let repo = repos.repos[key]
|
||||
return (
|
||||
<li key={key}>
|
||||
<a href={repo.href}>{repo.description}</a>
|
||||
</li>
|
||||
)
|
||||
})}
|
||||
</ul>
|
||||
{Object.keys(repos.repos).map((key) => {
|
||||
let repo = repos.repos[key]
|
||||
return (
|
||||
<a key={key} href={repo.href}>
|
||||
{repo.description}
|
||||
</a>
|
||||
)
|
||||
})}
|
||||
<hr />
|
||||
<div style={{ textAlign: 'center' }}>
|
||||
<img
|
||||
style={{ maxWidth: '100%', width: '400px' }}
|
||||
src={`${constants.siteUrl}img/bug.png`}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div style={{ textAlign: 'center' }}>
|
||||
<img
|
||||
style={{ maxWidth: '100%', width: '400px' }}
|
||||
src={`${constants.siteUrl}img/bug.png`}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
|
|
@ -39,3 +39,7 @@
|
|||
font-size: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.repos a {
|
||||
margin: 0px 5px;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue