Replaced repos tab with contribute tab

This commit is contained in:
MrFry 2020-04-06 21:30:51 +02:00
parent 86b01f443a
commit 72ea24c071
9 changed files with 122 additions and 10 deletions

View file

@ -1,63 +0,0 @@
import Button from '../components/Button.js'
import styles from './repos.module.css'
import repos from '../data/repos.json'
export default function Repos (props) {
return (
<div>
<div className={styles.description}>
{repos.description}
</div>
<table className={styles.repoTable}>
<thead>
<tr>
{repos.header.map((x, i) => {
return (
<td key={i}>
{x}
</td>
)
})}
</tr>
</thead>
<tbody>
{Object.keys(repos.repos).map((key) => {
let repo = repos.repos[key]
return (
<tr
key={key}
>
<td>
{repo.description}
</td>
<td>
<a href={repo.href}>
GitLab repo
</a>
</td>
<td>
<a href={repo.href + '/tree/master/devel'}>
Devel docs
</a>
</td>
</tr>
)
})}
</tbody>
</table>
<div className={styles.description}>
IRC chat: egy IRC chatszoba van létrehozva egy random szerveren, ahol tuszd azonnal üzenni,
és ha épp fent vagyok akkor azonnal válaszolok
</div>
<Button text='IRC chat' href='/irc' />
<div className={styles.description}>
Kérdés szerkesztő: Ezen az oldalon lehet szerkeszteni az összes kérdést, duplikációkat
eltávolítani vagy helytelen válaszokat kijavítani kézzel. Ha van hozzá jelszavad, akkor ezt
azonnal el tudod menteni, és éles adatbázis frissül ezzel, ha nincs és úgy érzed szeretnél
akkor kattints a fenti 'IRC chat' gombra!
</div>
<Button text='Data Editor' href='/dataeditor' />
</div>
)
}