import React from 'react' import Head from 'next/head' import FeedbackArea from '../components/feedbackArea' import styles from './contact.module.css' const contactMethods = { irc: { title: 'IRC chat', description: 'irc real time chat', onClick: () => { console.log('IRC') }, }, email: { title: 'E-mail', description: 'email', onClick: () => { console.log('email') }, }, } export default function Contact() { return (
Kapcsolat - Qmining | Frylabs.net

Kapcsolat



Itt vannak hogy hogy lehet kontaktolni
{Object.keys(contactMethods).map((key) => { const { onClick, title, description } = contactMethods[key] return (
{title}
{description}
) })}
) }