|
| 1 | +import React from 'react' |
| 2 | +import SEO from '../components/seo' |
| 3 | +import Layout from '../containers/layout' |
| 4 | +import Panel from '../components/Panel' |
| 5 | + |
| 6 | +const FAQPage = () => { |
| 7 | + return ( |
| 8 | + <Layout> |
| 9 | + <SEO |
| 10 | + title="QueerJS - Organizers" |
| 11 | + description="A meetup for everyone where Queer Speakers take the stage" |
| 12 | + /> |
| 13 | + <main> |
| 14 | + <h1 hidden>Welcome to QueerJS</h1> |
| 15 | + <Panel heading="FAQ"></Panel> |
| 16 | + <Panel heading="How do I speak at QueerJS?"> |
| 17 | + We'd love for you to speak at a meetup! Please see {' '} |
| 18 | + <a |
| 19 | + href="/speak" |
| 20 | + rel="noopener noreferrer" |
| 21 | + title="Speak" |
| 22 | + > |
| 23 | + Speaking at QueerJS |
| 24 | + </a> for more information about how you can propose a talk to a future iteration of QueerJS. |
| 25 | + </Panel> |
| 26 | + <Panel heading="How can I get involved?"> |
| 27 | + There are a lot of ways you could get involved with QueerJS! We're always looking for new locations to |
| 28 | + host meetups, as well as folks on the ground to act as local organizers and MCs. |
| 29 | + <br/><br/> |
| 30 | + Involvement might mean working with your employers to provide a space, organizing catering for meetup |
| 31 | + attendees, ensuring that there is a livestream or opportunity to record the speakers, and generally working |
| 32 | + to ensure that the meetup runs smoothly. |
| 33 | + <br/><br/> |
| 34 | + If you think you'd like to do this, we'd love to work with you to make |
| 35 | + it happen - please contact us via {' '} |
| 36 | + <a |
| 37 | + href="https://twitter.com/QueerJS" |
| 38 | + rel="noopener noreferrer" |
| 39 | + title="Twitter" |
| 40 | + target="_blank" |
| 41 | + > |
| 42 | + Twitter |
| 43 | + </a> |
| 44 | + , or email us at {' '} |
| 45 | + <a |
| 46 | + |
| 47 | + rel="noopener noreferrer" |
| 48 | + title="Email" |
| 49 | + > |
| 50 | + |
| 51 | + </a>! |
| 52 | + </Panel> |
| 53 | + <Panel heading="Where does QueerJS happen?"> |
| 54 | + We have a bunch of meetups being planned all over the globe{' '} |
| 55 | + <span role="img" aria-label="earth"> |
| 56 | + 🌍 |
| 57 | + </span>{' '} |
| 58 | + You can check the{' '} |
| 59 | + <a |
| 60 | + href="/" |
| 61 | + title="Cities" |
| 62 | + rel="noopener noreferrer" |
| 63 | + > |
| 64 | + Cities |
| 65 | + </a>{' '} |
| 66 | + page for a list of the upcoming (and past) meetups. |
| 67 | + </Panel> |
| 68 | + <Panel heading="Can I print and redistribute the meetup stickers?"> |
| 69 | + Yes! They're all open source and you can find them in our {' '} |
| 70 | + <a |
| 71 | + href="https://github.com/queerjs/brand-assets" |
| 72 | + title="Brand Assets" |
| 73 | + target="_blank" |
| 74 | + rel="noopener noreferrer" |
| 75 | + > |
| 76 | + Brand Assets |
| 77 | + </a>{' '} |
| 78 | + repository on GitHub. |
| 79 | + </Panel> |
| 80 | + <Panel heading="Any other questions?"> |
| 81 | + Please {' '} |
| 82 | + <a |
| 83 | + href="https://github.com/queerjs/info/issues/new" |
| 84 | + rel="noopener noreferrer" |
| 85 | + title="QueerJS Info" |
| 86 | + target="_blank" |
| 87 | + > |
| 88 | + open an issue |
| 89 | + </a> |
| 90 | + , send us a message on {' '} |
| 91 | + <a |
| 92 | + href="https://twitter.com/QueerJS" |
| 93 | + rel="noopener noreferrer" |
| 94 | + title="Twitter" |
| 95 | + target="_blank" |
| 96 | + > |
| 97 | + Twitter |
| 98 | + </a> |
| 99 | + , or email us at {' '} |
| 100 | + <a |
| 101 | + |
| 102 | + rel="noopener noreferrer" |
| 103 | + title="Email" |
| 104 | + > |
| 105 | + |
| 106 | + </a>! |
| 107 | + </Panel> |
| 108 | + </main> |
| 109 | + </Layout> |
| 110 | + ) |
| 111 | +} |
| 112 | + |
| 113 | +export default FAQPage |
0 commit comments