├── .gitignore
├── FONT_LICENSES
├── Diplomata
│ └── OFL.txt
├── Gravitas_One
│ └── OFL.txt
└── Smythe
│ └── OFL.txt
├── LICENSE
├── README.md
├── airbridge.js
├── components
├── color-switcher.js
├── cta.js
├── cursor.js
├── faq.js
├── flag.js
├── footer.js
├── gallery.js
├── header.js
├── meta.js
├── multiplayer-mouse.js
├── route.js
└── telegram.js
├── lib
├── questions.js
├── theme.js
├── use-has-mounted.js
└── use-prefers-motion.js
├── next-env.d.ts
├── next.config.js
├── package.json
├── pages
├── _app.js
├── _document.js
├── api
│ ├── _lib
│ │ ├── chromium.ts
│ │ ├── options.ts
│ │ ├── parser.ts
│ │ ├── sanitizer.ts
│ │ ├── template.ts
│ │ └── types.ts
│ ├── hello.js
│ ├── sign-in-slack.js
│ ├── slack-verification-code.js
│ └── ticket.js
├── hub.js
├── launch.js
└── meetups.mdx
├── prettier.config.js
├── public
├── PLEASE WORK.mp4
├── Untitled Project 300000.mp4
├── Untitled%20Project%203fw.mp4
├── android-icon-144x144.png
├── android-icon-192x192.png
├── android-icon-36x36.png
├── android-icon-48x48.png
├── android-icon-72x72.png
├── android-icon-96x96.png
├── apple-icon-114x114.png
├── apple-icon-120x120.png
├── apple-icon-144x144.png
├── apple-icon-152x152.png
├── apple-icon-180x180.png
├── apple-icon-57x57.png
├── apple-icon-60x60.png
├── apple-icon-72x72.png
├── apple-icon-76x76.png
├── apple-icon-precomposed.png
├── apple-icon.png
├── browserconfig.xml
├── coat-of-arms.png
├── cursors
│ ├── cursor.png
│ ├── cursor.svg
│ ├── dino-down.png
│ └── dino-up.png
├── favicon-16x16.png
├── favicon-32x32.png
├── favicon-96x96.png
├── favicon.ico
├── header.png
├── lander.mp4
├── manifest.json
├── meta.png
├── ms-icon-144x144.png
├── ms-icon-150x150.png
├── ms-icon-310x310.png
├── ms-icon-70x70.png
├── route.svg
├── signatures
│ ├── all.svg
│ ├── christina_asquith.png
│ ├── claire_wang.png
│ ├── matthew_stanciu.png
│ ├── max_wofford.png
│ ├── sam_poder.png
│ ├── tina_soriano.png
│ ├── tom_preston-werner.png
│ ├── zach_fogg.png
│ └── zach_latta.png
├── timeline.png
├── title.gif
├── title.png
└── zephyr-poster
│ ├── 0.png
│ ├── 1.png
│ ├── 10.png
│ ├── 11.png
│ ├── 12.png
│ ├── 13.png
│ ├── 2.png
│ ├── 3.png
│ ├── 4.png
│ ├── 5.png
│ ├── 6.png
│ ├── 7.png
│ ├── 8.png
│ ├── 9.png
│ └── combined.png
├── slack-manifest.yml
├── styles
├── Home.module.css
└── globals.css
├── tsconfig.json
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | .now
2 | .next
3 | node_modules
4 | .DS_Store
5 | *.pem
6 |
7 | # debug
8 | npm-debug.log*
9 | yarn-debug.log*
10 | yarn-error.log*
11 |
12 | # local env files
13 | .env.local
14 | .env.development.local
15 | .env.test.local
16 | .env.production.local
17 | .env
18 |
19 | # vercel
20 | .vercel
21 |
--------------------------------------------------------------------------------
/FONT_LICENSES/Diplomata/OFL.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2011, Eduardo Tunni (http://www.tipo.net.ar),
2 | with Reserved Font Name "Diplomata"
3 |
4 | This Font Software is licensed under the SIL Open Font License, Version 1.1.
5 | This license is copied below, and is also available with a FAQ at:
6 | http://scripts.sil.org/OFL
7 |
8 |
9 | -----------------------------------------------------------
10 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
11 | -----------------------------------------------------------
12 |
13 | PREAMBLE
14 | The goals of the Open Font License (OFL) are to stimulate worldwide
15 | development of collaborative font projects, to support the font creation
16 | efforts of academic and linguistic communities, and to provide a free and
17 | open framework in which fonts may be shared and improved in partnership
18 | with others.
19 |
20 | The OFL allows the licensed fonts to be used, studied, modified and
21 | redistributed freely as long as they are not sold by themselves. The
22 | fonts, including any derivative works, can be bundled, embedded,
23 | redistributed and/or sold with any software provided that any reserved
24 | names are not used by derivative works. The fonts and derivatives,
25 | however, cannot be released under any other type of license. The
26 | requirement for fonts to remain under this license does not apply
27 | to any document created using the fonts or their derivatives.
28 |
29 | DEFINITIONS
30 | "Font Software" refers to the set of files released by the Copyright
31 | Holder(s) under this license and clearly marked as such. This may
32 | include source files, build scripts and documentation.
33 |
34 | "Reserved Font Name" refers to any names specified as such after the
35 | copyright statement(s).
36 |
37 | "Original Version" refers to the collection of Font Software components as
38 | distributed by the Copyright Holder(s).
39 |
40 | "Modified Version" refers to any derivative made by adding to, deleting,
41 | or substituting -- in part or in whole -- any of the components of the
42 | Original Version, by changing formats or by porting the Font Software to a
43 | new environment.
44 |
45 | "Author" refers to any designer, engineer, programmer, technical
46 | writer or other person who contributed to the Font Software.
47 |
48 | PERMISSION & CONDITIONS
49 | Permission is hereby granted, free of charge, to any person obtaining
50 | a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 | redistribute, and sell modified and unmodified copies of the Font
52 | Software, subject to the following conditions:
53 |
54 | 1) Neither the Font Software nor any of its individual components,
55 | in Original or Modified Versions, may be sold by itself.
56 |
57 | 2) Original or Modified Versions of the Font Software may be bundled,
58 | redistributed and/or sold with any software, provided that each copy
59 | contains the above copyright notice and this license. These can be
60 | included either as stand-alone text files, human-readable headers or
61 | in the appropriate machine-readable metadata fields within text or
62 | binary files as long as those fields can be easily viewed by the user.
63 |
64 | 3) No Modified Version of the Font Software may use the Reserved Font
65 | Name(s) unless explicit written permission is granted by the corresponding
66 | Copyright Holder. This restriction only applies to the primary font name as
67 | presented to the users.
68 |
69 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
70 | Software shall not be used to promote, endorse or advertise any
71 | Modified Version, except to acknowledge the contribution(s) of the
72 | Copyright Holder(s) and the Author(s) or with their explicit written
73 | permission.
74 |
75 | 5) The Font Software, modified or unmodified, in part or in whole,
76 | must be distributed entirely under this license, and must not be
77 | distributed under any other license. The requirement for fonts to
78 | remain under this license does not apply to any document created
79 | using the Font Software.
80 |
81 | TERMINATION
82 | This license becomes null and void if any of the above conditions are
83 | not met.
84 |
85 | DISCLAIMER
86 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
87 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
88 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
89 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
90 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
91 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
92 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
93 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
94 | OTHER DEALINGS IN THE FONT SOFTWARE.
95 |
--------------------------------------------------------------------------------
/FONT_LICENSES/Gravitas_One/OFL.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com),
2 | with Reserved Font Name "Gravitas".
3 |
4 | This Font Software is licensed under the SIL Open Font License, Version 1.1.
5 | This license is copied below, and is also available with a FAQ at:
6 | http://scripts.sil.org/OFL
7 |
8 |
9 | -----------------------------------------------------------
10 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
11 | -----------------------------------------------------------
12 |
13 | PREAMBLE
14 | The goals of the Open Font License (OFL) are to stimulate worldwide
15 | development of collaborative font projects, to support the font creation
16 | efforts of academic and linguistic communities, and to provide a free and
17 | open framework in which fonts may be shared and improved in partnership
18 | with others.
19 |
20 | The OFL allows the licensed fonts to be used, studied, modified and
21 | redistributed freely as long as they are not sold by themselves. The
22 | fonts, including any derivative works, can be bundled, embedded,
23 | redistributed and/or sold with any software provided that any reserved
24 | names are not used by derivative works. The fonts and derivatives,
25 | however, cannot be released under any other type of license. The
26 | requirement for fonts to remain under this license does not apply
27 | to any document created using the fonts or their derivatives.
28 |
29 | DEFINITIONS
30 | "Font Software" refers to the set of files released by the Copyright
31 | Holder(s) under this license and clearly marked as such. This may
32 | include source files, build scripts and documentation.
33 |
34 | "Reserved Font Name" refers to any names specified as such after the
35 | copyright statement(s).
36 |
37 | "Original Version" refers to the collection of Font Software components as
38 | distributed by the Copyright Holder(s).
39 |
40 | "Modified Version" refers to any derivative made by adding to, deleting,
41 | or substituting -- in part or in whole -- any of the components of the
42 | Original Version, by changing formats or by porting the Font Software to a
43 | new environment.
44 |
45 | "Author" refers to any designer, engineer, programmer, technical
46 | writer or other person who contributed to the Font Software.
47 |
48 | PERMISSION & CONDITIONS
49 | Permission is hereby granted, free of charge, to any person obtaining
50 | a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 | redistribute, and sell modified and unmodified copies of the Font
52 | Software, subject to the following conditions:
53 |
54 | 1) Neither the Font Software nor any of its individual components,
55 | in Original or Modified Versions, may be sold by itself.
56 |
57 | 2) Original or Modified Versions of the Font Software may be bundled,
58 | redistributed and/or sold with any software, provided that each copy
59 | contains the above copyright notice and this license. These can be
60 | included either as stand-alone text files, human-readable headers or
61 | in the appropriate machine-readable metadata fields within text or
62 | binary files as long as those fields can be easily viewed by the user.
63 |
64 | 3) No Modified Version of the Font Software may use the Reserved Font
65 | Name(s) unless explicit written permission is granted by the corresponding
66 | Copyright Holder. This restriction only applies to the primary font name as
67 | presented to the users.
68 |
69 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
70 | Software shall not be used to promote, endorse or advertise any
71 | Modified Version, except to acknowledge the contribution(s) of the
72 | Copyright Holder(s) and the Author(s) or with their explicit written
73 | permission.
74 |
75 | 5) The Font Software, modified or unmodified, in part or in whole,
76 | must be distributed entirely under this license, and must not be
77 | distributed under any other license. The requirement for fonts to
78 | remain under this license does not apply to any document created
79 | using the Font Software.
80 |
81 | TERMINATION
82 | This license becomes null and void if any of the above conditions are
83 | not met.
84 |
85 | DISCLAIMER
86 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
87 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
88 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
89 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
90 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
91 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
92 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
93 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
94 | OTHER DEALINGS IN THE FONT SOFTWARE.
95 |
--------------------------------------------------------------------------------
/FONT_LICENSES/Smythe/OFL.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2011 by vernon adams (vern@newtypography.co.uk),
2 | with Reserved Font Name Smythe.
3 |
4 | This Font Software is licensed under the SIL Open Font License, Version 1.1.
5 | This license is copied below, and is also available with a FAQ at:
6 | http://scripts.sil.org/OFL
7 |
8 |
9 | -----------------------------------------------------------
10 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
11 | -----------------------------------------------------------
12 |
13 | PREAMBLE
14 | The goals of the Open Font License (OFL) are to stimulate worldwide
15 | development of collaborative font projects, to support the font creation
16 | efforts of academic and linguistic communities, and to provide a free and
17 | open framework in which fonts may be shared and improved in partnership
18 | with others.
19 |
20 | The OFL allows the licensed fonts to be used, studied, modified and
21 | redistributed freely as long as they are not sold by themselves. The
22 | fonts, including any derivative works, can be bundled, embedded,
23 | redistributed and/or sold with any software provided that any reserved
24 | names are not used by derivative works. The fonts and derivatives,
25 | however, cannot be released under any other type of license. The
26 | requirement for fonts to remain under this license does not apply
27 | to any document created using the fonts or their derivatives.
28 |
29 | DEFINITIONS
30 | "Font Software" refers to the set of files released by the Copyright
31 | Holder(s) under this license and clearly marked as such. This may
32 | include source files, build scripts and documentation.
33 |
34 | "Reserved Font Name" refers to any names specified as such after the
35 | copyright statement(s).
36 |
37 | "Original Version" refers to the collection of Font Software components as
38 | distributed by the Copyright Holder(s).
39 |
40 | "Modified Version" refers to any derivative made by adding to, deleting,
41 | or substituting -- in part or in whole -- any of the components of the
42 | Original Version, by changing formats or by porting the Font Software to a
43 | new environment.
44 |
45 | "Author" refers to any designer, engineer, programmer, technical
46 | writer or other person who contributed to the Font Software.
47 |
48 | PERMISSION & CONDITIONS
49 | Permission is hereby granted, free of charge, to any person obtaining
50 | a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 | redistribute, and sell modified and unmodified copies of the Font
52 | Software, subject to the following conditions:
53 |
54 | 1) Neither the Font Software nor any of its individual components,
55 | in Original or Modified Versions, may be sold by itself.
56 |
57 | 2) Original or Modified Versions of the Font Software may be bundled,
58 | redistributed and/or sold with any software, provided that each copy
59 | contains the above copyright notice and this license. These can be
60 | included either as stand-alone text files, human-readable headers or
61 | in the appropriate machine-readable metadata fields within text or
62 | binary files as long as those fields can be easily viewed by the user.
63 |
64 | 3) No Modified Version of the Font Software may use the Reserved Font
65 | Name(s) unless explicit written permission is granted by the corresponding
66 | Copyright Holder. This restriction only applies to the primary font name as
67 | presented to the users.
68 |
69 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
70 | Software shall not be used to promote, endorse or advertise any
71 | Modified Version, except to acknowledge the contribution(s) of the
72 | Copyright Holder(s) and the Author(s) or with their explicit written
73 | permission.
74 |
75 | 5) The Font Software, modified or unmodified, in part or in whole,
76 | must be distributed entirely under this license, and must not be
77 | distributed under any other license. The requirement for fonts to
78 | remain under this license does not apply to any document created
79 | using the Font Software.
80 |
81 | TERMINATION
82 | This license becomes null and void if any of the above conditions are
83 | not met.
84 |
85 | DISCLAIMER
86 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
87 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
88 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
89 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
90 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
91 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
92 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
93 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
94 | OTHER DEALINGS IN THE FONT SOFTWARE.
95 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2021 Hack Club
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 
2 |
3 | # Hacker Zephyr Site
4 |
5 | _Created using Theme UI & Next.js. Based on [Hack Club Theme Starter](https://github.com/hackclub/theme-starter)._
6 |
7 | ## Usage
8 |
9 | 1. Import this repo to your coding environment of choice. Download it, `git clone`, or use the GitHub import on Glitch/Repl.it.
10 | 2. `yarn` to install dependencies.
11 | 3. `yarn dev` to start your server.
12 | 4. Start adding your own pages & components in their respective directories.
13 |
--------------------------------------------------------------------------------
/airbridge.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/all-aboard/04c289fd20f66db18902d139a3b03b9a7ef96eb8/airbridge.js
--------------------------------------------------------------------------------
/components/color-switcher.js:
--------------------------------------------------------------------------------
1 | import { IconButton, useColorMode } from 'theme-ui'
2 |
3 | const ColorSwitcher = props => {
4 | const [mode, setMode] = useColorMode()
5 | return (
6 | setMode(mode === 'dark' ? 'light' : 'dark')}
8 | title={`Switch to ${mode === 'dark' ? 'light' : 'dark'} mode`}
9 | sx={{
10 | position: 'absolute',
11 | top: [2, 3],
12 | right: [2, 3],
13 | color: 'primary',
14 | cursor: 'pointer',
15 | borderRadius: 'circle',
16 | transition: 'box-shadow .125s ease-in-out',
17 | ':hover,:focus': {
18 | boxShadow: '0 0 0 3px',
19 | outline: 'none'
20 | }
21 | }}
22 | {...props}
23 | >
24 |
35 |
36 | )
37 | }
38 |
39 | export default ColorSwitcher
40 |
--------------------------------------------------------------------------------
/components/cta.js:
--------------------------------------------------------------------------------
1 | import { Box, Heading, Text, Button, Grid, Container, Flex } from 'theme-ui'
2 |
3 | const buttonSX = {
4 | background: '#759d3e',
5 | color: 'white',
6 | minWidth: [5, 8],
7 | maxWidth: '75wh',
8 | border: 'none',
9 | m: 0,
10 | mt: 0,
11 | p: 4,
12 | width: '100%',
13 | boxShadow: 'card',
14 | border: '4px dashed #eaeedc',
15 | ':hover,:focus': {
16 | boxShadow: 'elevated',
17 | color: 'black',
18 | }
19 | }
20 |
21 | const CTA = () => (
22 |
31 |
32 |
42 |
43 | The interest form has now closed.
44 |
45 | Thank you to all who registered.
46 |
47 |
48 |
49 |
50 |
62 |
63 |
64 |
65 | )
66 |
67 | export default CTA
68 |
--------------------------------------------------------------------------------
/components/cursor.js:
--------------------------------------------------------------------------------
1 | import { Image } from 'theme-ui'
2 | const GhostCursor = ({
3 | x,
4 | y
5 | }) => (
6 |
10 | )
11 | export default GhostCursor
--------------------------------------------------------------------------------
/components/faq.js:
--------------------------------------------------------------------------------
1 | import questions from '../lib/questions'
2 | import {
3 | Container,
4 | Grid,
5 | Heading,
6 | Box,
7 | Text
8 | } from 'theme-ui'
9 |
10 | const FAQ = () => (
11 |
15 |
16 | Glossary
17 |
18 |
19 | {questions.map(({ question, answer }, index) => (
20 |
32 | {question}
38 | {answer}
42 |
43 | ))}
44 |
45 |
46 | )
47 |
48 | export default FAQ
--------------------------------------------------------------------------------
/components/flag.js:
--------------------------------------------------------------------------------
1 | const Flag = props => (
2 |
8 |
49 |
50 | )
51 |
52 | export default Flag
--------------------------------------------------------------------------------
/components/footer.js:
--------------------------------------------------------------------------------
1 | import {
2 | Box,
3 | Container,
4 | Heading,
5 | Text,
6 | Grid,
7 | Flex,
8 | Link
9 | } from 'theme-ui'
10 |
11 | export default function Footer() {
12 | return (
13 |
14 |
15 |
16 |
17 |
18 | A Gift from Hack Club HQ
19 |
20 |
21 |
22 | Home
23 | {' '}
24 | |{' '}
25 |
26 | Slack
27 | {' '}
28 | |{' '}
29 |
33 | Workshops
34 | {' '}
35 | |{' '}
36 |
40 | Scrapbook
41 |
42 |
43 |
44 |
45 |
46 |
52 |
62 | h
63 |
64 |
65 |
66 |
67 |
68 | )
69 | }
70 |
--------------------------------------------------------------------------------
/components/gallery.js:
--------------------------------------------------------------------------------
1 | import { Grid, Container, Heading, Box, Text } from 'theme-ui'
2 | import Route from './route'
3 |
4 | const Photo = ({ alt, src, height, display, width, backgroundPosition }) => {
5 | return (
6 |
7 |
24 |
25 | {alt}
26 |
27 |
28 |
29 | )
30 | }
31 |
32 | const Gallery = () => (
33 |
34 |
35 |
36 | Oh, the Places You'll Go
37 |
38 |
39 | You'll be spending time both on and off the train. Here's the view.
40 |
41 |
42 |
43 |
44 |
49 |
54 |
59 |
64 |
70 |
76 |
77 |
84 |
85 |
86 |
87 | )
88 |
89 | export default Gallery
90 |
--------------------------------------------------------------------------------
/components/header.js:
--------------------------------------------------------------------------------
1 | import { Box, Image } from 'theme-ui'
2 | import usePrefersMotion from '../lib/use-prefers-motion'
3 |
4 | const Static = () => (
5 |
16 |
26 |
27 | )
28 |
29 | const Header = () => {
30 | const prefersMotion = usePrefersMotion()
31 | if (prefersMotion) {
32 | return (
33 |
43 |
61 |
62 |
63 | This summer, we're closing Zoom. All aboard the Hacker Zephyr. Trans
64 | America, Burlington Vermont - Los Angeles California
65 |
66 |
67 |
68 | )
69 | } else {
70 | return
71 | }
72 | }
73 |
74 | export default Header
75 |
--------------------------------------------------------------------------------
/components/meta.js:
--------------------------------------------------------------------------------
1 | import Head from 'next/head'
2 |
3 | const Meta = ({
4 | name = 'Hack Club',
5 | title = 'The Hacker Zephyr',
6 | description = `Every summer Hack Club does something special. This year, we're chartering a train across America, and hosting the world's longest hackathon on land (in miles).`,
7 | image = 'https://slack-oauth-starter-test-xy120.hackclub.dev/meta.png'
8 | }) => (
9 |
43 | In 2019, 75 Hack Club leaders gathered in San Francisco for Flagship.
44 |
45 |
46 | In 2020, 300 Hack Clubbers received $50,000 for hardware projects.
47 | We launched Scrapbook, and
48 | hosted the Summer of Making
49 | .
50 |
51 |
52 | This year, we're chartering a train across America.
53 |
54 |
55 | We're starting at{' '}
56 |
57 | Hack Club HQ
58 | in Burlington, Vermont, heading south to New York City, west through Chicago, and crossing the Rockies on our way
59 | to San Francisco. From there, we'll follow the Pacific Ocean and end in Los Angeles, where we'll finish at SpaceX.
60 |
61 |
62 | Onboard, we're hosting the world's longest hackathon on land: 3,502 miles long.
63 |
64 |
65 | This won't be a regular hackathon. Imagine a travelling hacker festival, where the goal is to make beautiful and interesting things with code.
66 |
67 |
68 | The hackathon begins when we see the Atlantic Ocean and ends at the Pacific Ocean in Los Angeles. On The Hacker Zephyr, you'll meet eclectic guests, including vaudevillians, political exiles, startup founders, and a contortionist.
69 |
70 |
71 | This trip is a gift from Hack Club to you and asks nothing in return. We
72 | want this to be a special, technical, and soul-expanding adventure that you'll remember for the rest of your life.
73 |
74 |
75 | Please register your interest below. We are trying to fit as many Hack Clubbers as we can on The Hacker Zephyr.
76 |