mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Added irc button to feedback tab
This commit is contained in:
parent
4bc9db035b
commit
cf1c99b97f
2 changed files with 22 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
import styles from './feedback.module.css'
|
||||||
|
|
||||||
import constants from '../constants.json'
|
import constants from '../constants.json'
|
||||||
|
|
||||||
export default function Feedback (props) {
|
export default function Feedback (props) {
|
||||||
|
@ -49,6 +51,16 @@ export default function Feedback (props) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
<center>
|
||||||
|
<a href='/irc'>
|
||||||
|
<div className={styles.ircLink}>
|
||||||
|
IRC chat
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</center>
|
||||||
|
<p />
|
||||||
|
<hr />
|
||||||
|
<p />
|
||||||
{renderFeedback()}
|
{renderFeedback()}
|
||||||
<p />
|
<p />
|
||||||
<hr />
|
<hr />
|
||||||
|
|
10
src/pages/feedback.module.css
Normal file
10
src/pages/feedback.module.css
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
.ircLink {
|
||||||
|
background-color: #9999ff;
|
||||||
|
border: none;
|
||||||
|
color: white;
|
||||||
|
padding: 15px 32px;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue