// Kontakt Page function KontaktPage() { const [t, setTweak] = window.useTweaks(window.SHARED_DEFAULTS); const theme = window.useTheme(t); const { c, orange, glow, pad, fonts } = theme; const [lang, , tl] = window.useLang(); const [form, setForm] = React.useState({ name: '', email: '', topic: 'PS3 Academy', msg: '' }); const topics = ['PS3 Academy', 'HOGC DNA', 'United', 'YMC-D', tl('Allgemein', 'General')]; return (
setTweak('darkMode', v)} />
{tl('Lass uns reden', "Let's talk")}

{tl('Kontakt.', 'Contact.')}
{tl('Direkt.', 'Direct.')}

{/* FORM */}

{tl('Schreib uns.', 'Write to us.')}

{[ { k: 'name', l: tl('Name', 'Name'), tag: 'input', name: 'name' }, { k: 'email', l: 'E-Mail', tag: 'input', type: 'email', name: 'email' }, ].map((f) => ( ))}