gitextract_sca6vlk2/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── attachment-warn.yml │ ├── caniuse-update.yml │ ├── ci.yml │ └── validate-team-json.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── AGENT.md ├── LICENSE.md ├── README.md ├── components/ │ ├── AButton.ts │ ├── analytics.tsx │ ├── announcement.tsx │ ├── announcements/ │ │ ├── amount.tsx │ │ ├── cta.tsx │ │ ├── elon.mdx │ │ ├── hcb-mobile.mdx │ │ ├── hcb-open-source.mdx │ │ ├── hcb_cta.tsx │ │ ├── holder.tsx │ │ ├── pills.tsx │ │ ├── preston-werner-2022.mdx │ │ ├── preston-werner.mdx │ │ └── relon.mdx │ ├── arcade/ │ │ ├── footer.tsx │ │ └── projects.tsx │ ├── background-image.tsx │ ├── bin/ │ │ ├── GalleryPosts.tsx │ │ ├── PartTag.module.css │ │ ├── PartTag.tsx │ │ ├── nav.tsx │ │ └── rsvp-form.tsx │ ├── bio.tsx │ ├── boardbio.tsx │ ├── color-switcher.tsx │ ├── comma.ts │ ├── directoryModal.tsx │ ├── donate/ │ │ ├── donors.json │ │ └── sponsors.tsx │ ├── dot.tsx │ ├── elon.mdx │ ├── fade-in.tsx │ ├── fiscal-sponsorship/ │ │ ├── contact.tsx │ │ ├── directory/ │ │ │ └── card.tsx │ │ ├── features.tsx │ │ ├── first/ │ │ │ ├── apply-button.tsx │ │ │ ├── features.tsx │ │ │ ├── start.tsx │ │ │ ├── stats.tsx │ │ │ └── testimonials.tsx │ │ ├── open-source.tsx │ │ ├── organization-spotlight.tsx │ │ ├── sign-in.tsx │ │ └── tooltip.tsx │ ├── flag.tsx │ ├── flex-col.tsx │ ├── footer.tsx │ ├── force-theme.ts │ ├── hackathons/ │ │ ├── features/ │ │ │ ├── marketing.tsx │ │ │ └── slack.tsx │ │ ├── keep-exploring.tsx │ │ ├── landing.tsx │ │ ├── overview.tsx │ │ ├── recap.tsx │ │ └── scrolling-hackathons.tsx │ ├── icon.tsx │ ├── index/ │ │ ├── cards/ │ │ │ ├── beest.tsx │ │ │ ├── button.tsx │ │ │ ├── card-model.tsx │ │ │ ├── clubs.tsx │ │ │ ├── fallout.tsx │ │ │ ├── flavortown.tsx │ │ │ ├── hackathons.tsx │ │ │ ├── haxidraw.tsx │ │ │ ├── hcb.tsx │ │ │ ├── hctg.tsx │ │ │ ├── horizons.tsx │ │ │ ├── jackpot.tsx │ │ │ ├── macondo.tsx │ │ │ ├── mailing-list.tsx │ │ │ ├── sinerider.tsx │ │ │ ├── slack.tsx │ │ │ ├── sleepover.tsx │ │ │ ├── sprig-console.tsx │ │ │ ├── sprig.tsx │ │ │ ├── stasis.tsx │ │ │ └── workshops.tsx │ │ ├── carousel-cards.tsx │ │ ├── carousel.tsx │ │ ├── ctas.tsx │ │ ├── events.tsx │ │ └── github.tsx │ ├── letterhead.tsx │ ├── mail-card.tsx │ ├── marquee.tsx │ ├── mention.tsx │ ├── nav.tsx │ ├── onboard/ │ │ ├── gallery-paginated.tsx │ │ ├── item.tsx │ │ ├── pagination-buttons.tsx │ │ ├── recap.tsx │ │ └── youtube-video.tsx │ ├── particles.tsx │ ├── photo.tsx │ ├── posts/ │ │ ├── emoji.tsx │ │ ├── index.tsx │ │ └── mention.tsx │ ├── press.mdx │ ├── react-reveal-compat.tsx │ ├── react-tooltip.ts │ ├── replit/ │ │ ├── scale-up.tsx │ │ └── token-instructions.tsx │ ├── scroll-hint.tsx │ ├── secret.tsx │ ├── ship/ │ │ └── why.mdx │ ├── signature.tsx │ ├── signatures.tsx │ ├── slack.tsx │ ├── slide-down.tsx │ ├── slide-up.tsx │ ├── sparkles/ │ │ ├── index.tsx │ │ └── money.tsx │ ├── stage.tsx │ ├── stat.tsx │ ├── submit.tsx │ ├── tilt.tsx │ └── winter/ │ ├── breakdown-box.tsx │ ├── breakdown.tsx │ ├── footer.tsx │ ├── info.tsx │ ├── landing.tsx │ ├── projects.tsx │ ├── recap.tsx │ └── timeline.tsx ├── eslint.config.mts ├── lib/ │ ├── cached-hcb-orgs.ts │ ├── countries.json │ ├── cta.json │ ├── dates.ts │ ├── fetcher.ts │ ├── git-info.ts │ ├── helpers.ts │ ├── members.ts │ ├── organization.ts │ ├── slackData.ts │ ├── sleep.ts │ ├── theme.ts │ ├── use-form.ts │ ├── use-has-mounted.ts │ ├── use-media.ts │ ├── use-prefers-motion.ts │ ├── use-prefers-reduced-motion.ts │ └── use-random-interval.ts ├── next.config.ts ├── package.json ├── pages/ │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── acknowledged.tsx │ ├── amas/ │ │ ├── geohot.tsx │ │ ├── index.tsx │ │ ├── sal.tsx │ │ └── vitalik.tsx │ ├── api/ │ │ ├── arcade/ │ │ │ ├── hack-hour/ │ │ │ │ └── inventory.ts │ │ │ └── shop.ts │ │ ├── bin/ │ │ │ ├── gallery/ │ │ │ │ ├── posts.ts │ │ │ │ └── tags.ts │ │ │ ├── rsvp.ts │ │ │ └── wokwi/ │ │ │ ├── new/ │ │ │ │ ├── [parts].ts │ │ │ │ └── index.ts │ │ │ └── parts.ts │ │ ├── bucky.ts │ │ ├── channels/ │ │ │ └── resolve.ts │ │ ├── contribute.ts │ │ ├── first-team.ts │ │ ├── games.ts │ │ ├── github.ts │ │ ├── join.ts │ │ ├── mailing-list.ts │ │ ├── onboard/ │ │ │ ├── p/ │ │ │ │ ├── [project]/ │ │ │ │ │ └── index.ts │ │ │ │ ├── count.ts │ │ │ │ └── index.ts │ │ │ └── svg/ │ │ │ └── [board_url]/ │ │ │ ├── bottom.ts │ │ │ ├── index.ts │ │ │ └── top.ts │ │ ├── replit/ │ │ │ └── signup.ts │ │ ├── sprig-console.ts │ │ ├── stars.ts │ │ ├── steve.ts │ │ ├── stickers.ts │ │ ├── stuff.ts │ │ ├── team.ts │ │ └── winter-rsvp.ts │ ├── arcade/ │ │ └── index.tsx │ ├── bin/ │ │ ├── gallery.tsx │ │ └── prelaunch.tsx │ ├── brand.tsx │ ├── clubs.tsx │ ├── content/ │ │ ├── covid19.mdx │ │ ├── it-admins.mdx │ │ ├── sponsorship.mdx │ │ ├── sunsetting-som.mdx │ │ └── transparency/ │ │ └── may-2020.mdx │ ├── deprecated/ │ │ └── [deprecated].tsx │ ├── elon.tsx │ ├── events.tsx │ ├── fiscal-sponsorship/ │ │ ├── about.tsx │ │ ├── climate/ │ │ │ ├── [region].tsx │ │ │ └── index.tsx │ │ ├── directory/ │ │ │ ├── [category]/ │ │ │ │ ├── [region].tsx │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── first.tsx │ │ ├── index.tsx │ │ ├── mobile/ │ │ │ └── index.tsx │ │ └── open-source.tsx │ ├── hackathons/ │ │ ├── grant.tsx │ │ └── index.tsx │ ├── imprint.tsx │ ├── index.tsx │ ├── jobs/ │ │ └── index.tsx │ ├── minecraft.tsx │ ├── night.tsx │ ├── onboard/ │ │ ├── board/ │ │ │ └── [slug].tsx │ │ ├── first.tsx │ │ ├── gallery/ │ │ │ └── index.tsx │ │ └── index.tsx │ ├── opensource.tsx │ ├── philanthropy/ │ │ ├── index.tsx │ │ └── supporters.tsx │ ├── philosophy.tsx │ ├── pizza.tsx │ ├── press.tsx │ ├── preston-werner-2022.tsx │ ├── preston-werner.tsx │ ├── relon.tsx │ ├── replit.tsx │ ├── santa.tsx │ ├── sharkbank/ │ │ └── index.tsx │ ├── ship.tsx │ ├── sitemap.xml.tsx │ ├── steve.tsx │ ├── stickers.tsx │ ├── team.tsx │ └── winter.tsx ├── public/ │ ├── .well-known/ │ │ └── security.txt │ ├── acknowledged.json │ ├── bin/ │ │ ├── data-loading.js │ │ ├── index.html │ │ ├── landing/ │ │ │ ├── index.html │ │ │ ├── script.js │ │ │ └── style.css │ │ ├── landing-new/ │ │ │ ├── ascii-art.txt │ │ │ ├── gambling.js │ │ │ ├── script.js │ │ │ └── style.css │ │ ├── memes.js │ │ ├── orph/ │ │ │ ├── orph.css │ │ │ └── orph.js │ │ ├── selector/ │ │ │ ├── index.html │ │ │ ├── script.js │ │ │ └── style.css │ │ └── style/ │ │ ├── common.css │ │ ├── footer.css │ │ └── gallery.module.css │ ├── carousel.json │ ├── horizons/ │ │ └── Hypebuzz.otf │ ├── robots.txt │ ├── stickers-in-stock.html │ └── team.json ├── tsconfig.json ├── types/ │ └── mdx.d.ts └── vercel.json