mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Merge
This commit is contained in:
commit
6d2b682117
14 changed files with 329 additions and 122 deletions
|
@ -1,9 +1,8 @@
|
|||
import React, { useState } from 'react'
|
||||
import Head from 'next/head'
|
||||
|
||||
import Button from '../components/Button.js'
|
||||
import Sleep from '../components/sleep'
|
||||
import TodoTable from '../components/todoStuff/todoTable'
|
||||
import Todos from '../components/todoStuff/todos'
|
||||
|
||||
import constants from '../constants.json'
|
||||
import styles from './contribute.module.css'
|
||||
|
@ -72,39 +71,26 @@ export default function contribute() {
|
|||
annál nehezebb a feladat. Tartsd egeret kártyán részletesebb leírásért
|
||||
(ha van hozzá)
|
||||
</div>
|
||||
<TodoTable />
|
||||
<Todos />
|
||||
<div className={styles.description}>Itt írhatsz todo-ra ötleteket </div>
|
||||
{renderNewTaskArea()}
|
||||
<Sleep />
|
||||
<hr />
|
||||
<div className={styles.description}>
|
||||
Csak álnévvel commitolj git repókhoz!
|
||||
</div>
|
||||
<div className={styles.title}>Git repos</div>
|
||||
<hr />
|
||||
<hr />
|
||||
<div className={styles.repos}>
|
||||
<div>Git repo links</div>
|
||||
{Object.keys(repos.repos).map((key) => {
|
||||
let repo = repos.repos[key]
|
||||
return (
|
||||
<div key={key}>
|
||||
<a href={repo.href}>{repo.description}</a>
|
||||
</div>
|
||||
)
|
||||
})}
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
<div className={styles.description}>
|
||||
IRC chat: egy IRC chatszoba van létrehozva egy random szerveren, ahol
|
||||
tudsz azonnal üzenni, és ha épp fent vagyok akkor azonnal válaszolok
|
||||
</div>
|
||||
<Button text="IRC chat" href="/irc" />
|
||||
<hr />
|
||||
<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, ha nincs és
|
||||
úgy érzed szeretnél akkor kattints a fenti IRC chat gombra!
|
||||
</div>
|
||||
<Button text="Data Editor" href="/dataeditor" />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue