├── .do └── deploy.template.yaml ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── report-a-bug.md │ └── suggest-a-feature.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ ├── deps.sh │ └── deps.yml ├── .gitignore ├── .husky ├── install.mjs └── pre-commit ├── .lintstagedrc ├── .nvmrc ├── .prettierrc ├── LICENSE.md ├── Makefile ├── README.md ├── SECURITY.md ├── jsconfig.json ├── next.config.js ├── package.json ├── public ├── .gitignore ├── .well-known │ └── security.txt ├── 2logo-hacktoberfest-12--hero.webm ├── health ├── logo-hacktoberfest-12--hero.mov ├── logo-hacktoberfest-12--hero.png └── logo-hacktoberfest-12--hero.webm └── src ├── assets ├── brand-guidelines.pdf ├── brand-kit.zip ├── hacktoberfest2025-sponsorship_prospectus.pdf └── img │ ├── 8-bit-down.svg │ ├── advocates │ ├── cloudflare-hero.svg │ └── cloudflare.svg │ ├── ascii-404.svg │ ├── ascii-about.svg │ ├── ascii-brandkit.svg │ ├── ascii-donate.svg │ ├── ascii-events.svg │ ├── ascii-participation.svg │ ├── ascii-report.svg │ ├── ascii-share--black.svg │ ├── ascii-share.svg │ ├── ascii-sponsors--black.svg │ ├── ascii-sponsors.svg │ ├── bg-footer.svg │ ├── bg-grain.png │ ├── bg-header.svg │ ├── bg-hero-secondary--bottom.svg │ ├── bg-hero-secondary--top.svg │ ├── bubble.svg │ ├── council │ ├── bekah.jpg │ ├── duane.jpg │ ├── eddie.jpg │ ├── lisa.jpg │ └── mason.jpg │ ├── curved-arrow.svg │ ├── diamond.svg │ ├── dots.svg │ ├── favicon.svg │ ├── founders │ ├── digitalocean-hero.svg │ ├── digitalocean.svg │ └── mlh.svg │ ├── globe-smile.svg │ ├── globe.svg │ ├── heroes │ ├── about.svg │ ├── donate.svg │ ├── events.svg │ ├── loading.svg │ ├── participation.svg │ ├── registration.svg │ └── report.svg │ ├── heroicon-animation.gif │ ├── icons │ ├── icon-pixel-bullhorn.svg │ ├── icon-pixel-file.svg │ ├── icon-pixel-globe.svg │ ├── icon-pixel-heart.svg │ ├── icon-pixel-pencil.svg │ ├── icon-pixel-question.svg │ ├── icon-pixel-thumbs-up.svg │ ├── icon-pixel-users.svg │ ├── opensource.svg │ ├── play.svg │ └── social-icons │ │ ├── blue-sky.svg │ │ ├── discord.svg │ │ ├── email.svg │ │ ├── faceook.svg │ │ ├── hackernews.svg │ │ ├── linkedin.svg │ │ ├── mastodon.svg │ │ ├── reddit.svg │ │ └── x-twitter.svg │ ├── logo-digitalocean.svg │ ├── logo-github.svg │ ├── logo-gitlab.svg │ ├── logo-hacktoberfest-11--beige.svg │ ├── logo-hacktoberfest-11--footer.svg │ ├── logo-hacktoberfest-11--green.svg │ ├── logo-hacktoberfest-11--mark.svg │ ├── logo-hacktoberfest-11--submitted.svg │ ├── logo-hacktoberfest-12--footer.svg │ ├── logo-hacktoberfest-12--hero.webm │ ├── logo-hacktoberfest-12--nav.svg │ ├── opengraph.png │ ├── partners │ ├── cloud-native-white.svg │ ├── cloud-native.svg │ ├── dev-white.svg │ ├── dev.svg │ ├── github-white.svg │ ├── github.svg │ ├── github_education-white.svg │ ├── github_education.svg │ ├── gitlab-white.svg │ ├── gitlab.svg │ ├── holopin-white.svg │ ├── holopin.svg │ ├── mlh.svg │ ├── opensource.svg │ └── osi-white.svg │ ├── potion.svg │ ├── resource.svg │ ├── sloan-the-sloth.svg │ ├── space-helmet.svg │ ├── sponsors │ ├── amd-white.svg │ ├── amd.svg │ ├── auth0-white.svg │ └── auth0.svg │ ├── sustainers │ ├── quira-hero.svg │ └── quira.svg │ ├── top-dots.svg │ └── trophy.svg ├── build ├── index.mjs ├── post │ ├── cache.mjs │ └── index.mjs ├── robots.mjs └── sitemap.mjs ├── components ├── Accordion │ ├── Accordion.styles.js │ └── index.js ├── AccordionCouncil │ ├── AccordionCouncil.styles.js │ └── index.js ├── AccordionSponsor │ ├── AccordionSponsor.styles.js │ └── index.js ├── Avatar │ ├── Avatar.styles.js │ └── index.js ├── ButtonMain │ ├── ButtonMain.styles.js │ └── index.js ├── Card │ ├── Card.styles.js │ └── index.js ├── CardCallout │ ├── CardCallout.styles.js │ └── index.js ├── Container │ ├── Container.styles.js │ └── index.js ├── ContentMaster │ ├── ContentMaster.styles.js │ └── index.js ├── ContentSide │ ├── ContentSide.styles.js │ └── index.js ├── Corners │ ├── Corners.styles.js │ └── index.js ├── Countdown │ ├── Countdown.styles.js │ └── index.js ├── CustomLink │ ├── CustomLink.styles.js │ └── index.js ├── Divider │ ├── Divider.styles.js │ └── index.js ├── DividerRow │ ├── DividerRow.styles.js │ └── index.js ├── Event │ ├── Event.styles.js │ └── index.js ├── Events │ ├── Events.styles.js │ └── index.js ├── Footer │ ├── Footer.styles.js │ └── index.js ├── Glitch │ ├── Glitch.styles.js │ └── index.js ├── Header │ ├── Header.styles.js │ └── index.js ├── Hero │ ├── Hero.styles.js │ └── index.js ├── HeroSecondary │ ├── HeroSecondary.styles.js │ └── index.js ├── HomeIntro │ ├── HomeIntro.styles.js │ └── index.js ├── Input │ ├── Input.styles.js │ └── index.js ├── Layout │ ├── Layout.styles.js │ └── index.js ├── Marquee │ ├── Marquee.styles.js │ └── index.js ├── Progress │ ├── Progress.styles.js │ └── index.js ├── PullRequest │ ├── PullRequest.styles.js │ └── index.js ├── RevealSection │ ├── RevealSection.styles.js │ └── index.js ├── Section │ ├── Section.styles.js │ └── index.js ├── SectionDivider │ ├── SectionDivider.styles.js │ └── index.js ├── Select │ ├── Select.styles.js │ └── index.js ├── SideBySide │ ├── SideBySide.styles.js │ └── index.js ├── SocialIcons.js ├── SponsorForm │ ├── SponsorForm.styles.js │ └── index.js ├── Sponsors │ ├── Sponsors.styles.js │ └── index.js ├── SpotHeader │ ├── SpotHeader.styles.js │ └── index.js ├── TextLink │ ├── TextLink.styles.js │ └── index.js ├── Wistia │ ├── Wistia.styles.js │ └── index.js ├── dorknamic-island.js ├── form.js ├── icons │ ├── Download.js │ └── flags │ │ ├── FlagAD.tsx │ │ ├── FlagAE.tsx │ │ ├── FlagAF.tsx │ │ ├── FlagAG.tsx │ │ ├── FlagAI.tsx │ │ ├── FlagAL.tsx │ │ ├── FlagAM.tsx │ │ ├── FlagAN.tsx │ │ ├── FlagAO.tsx │ │ ├── FlagAQ.tsx │ │ ├── FlagAR.tsx │ │ ├── FlagAS.tsx │ │ ├── FlagAT.tsx │ │ ├── FlagAU.tsx │ │ ├── FlagAW.tsx │ │ ├── FlagAX.tsx │ │ ├── FlagAZ.tsx │ │ ├── FlagBA.tsx │ │ ├── FlagBB.tsx │ │ ├── FlagBD.tsx │ │ ├── FlagBE.tsx │ │ ├── FlagBF.tsx │ │ ├── FlagBG.tsx │ │ ├── FlagBH.tsx │ │ ├── FlagBI.tsx │ │ ├── FlagBJ.tsx │ │ ├── FlagBL.tsx │ │ ├── FlagBM.tsx │ │ ├── FlagBN.tsx │ │ ├── FlagBO.tsx │ │ ├── FlagBQ.tsx │ │ ├── FlagBR.tsx │ │ ├── FlagBS.tsx │ │ ├── FlagBT.tsx │ │ ├── FlagBV.tsx │ │ ├── FlagBW.tsx │ │ ├── FlagBY.tsx │ │ ├── FlagBZ.tsx │ │ ├── FlagCA.tsx │ │ ├── FlagCC.tsx │ │ ├── FlagCD.tsx │ │ ├── FlagCF.tsx │ │ ├── FlagCG.tsx │ │ ├── FlagCH.tsx │ │ ├── FlagCI.tsx │ │ ├── FlagCK.tsx │ │ ├── FlagCL.tsx │ │ ├── FlagCM.tsx │ │ ├── FlagCN.tsx │ │ ├── FlagCO.tsx │ │ ├── FlagCR.tsx │ │ ├── FlagCU.tsx │ │ ├── FlagCV.tsx │ │ ├── FlagCW.tsx │ │ ├── FlagCX.tsx │ │ ├── FlagCY.tsx │ │ ├── FlagCZ.tsx │ │ ├── FlagDE.tsx │ │ ├── FlagDJ.tsx │ │ ├── FlagDK.tsx │ │ ├── FlagDM.tsx │ │ ├── FlagDO.tsx │ │ ├── FlagDZ.tsx │ │ ├── FlagEC.tsx │ │ ├── FlagEE.tsx │ │ ├── FlagEG.tsx │ │ ├── FlagEH.tsx │ │ ├── FlagER.tsx │ │ ├── FlagES.tsx │ │ ├── FlagET.tsx │ │ ├── FlagFI.tsx │ │ ├── FlagFJ.tsx │ │ ├── FlagFK.tsx │ │ ├── FlagFM.tsx │ │ ├── FlagFO.tsx │ │ ├── FlagFR.tsx │ │ ├── FlagGA.tsx │ │ ├── FlagGB.tsx │ │ ├── FlagGD.tsx │ │ ├── FlagGE.tsx │ │ ├── FlagGF.tsx │ │ ├── FlagGG.tsx │ │ ├── FlagGH.tsx │ │ ├── FlagGI.tsx │ │ ├── FlagGL.tsx │ │ ├── FlagGM.tsx │ │ ├── FlagGN.tsx │ │ ├── FlagGP.tsx │ │ ├── FlagGQ.tsx │ │ ├── FlagGR.tsx │ │ ├── FlagGS.tsx │ │ ├── FlagGT.tsx │ │ ├── FlagGU.tsx │ │ ├── FlagGW.tsx │ │ ├── FlagGY.tsx │ │ ├── FlagHK.tsx │ │ ├── FlagHM.tsx │ │ ├── FlagHN.tsx │ │ ├── FlagHR.tsx │ │ ├── FlagHT.tsx │ │ ├── FlagHU.tsx │ │ ├── FlagID.tsx │ │ ├── FlagIE.tsx │ │ ├── FlagIL.tsx │ │ ├── FlagIM.tsx │ │ ├── FlagIN.tsx │ │ ├── FlagIO.tsx │ │ ├── FlagIQ.tsx │ │ ├── FlagIR.tsx │ │ ├── FlagIS.tsx │ │ ├── FlagIT.tsx │ │ ├── FlagJE.tsx │ │ ├── FlagJM.tsx │ │ ├── FlagJO.tsx │ │ ├── FlagJP.tsx │ │ ├── FlagKE.tsx │ │ ├── FlagKG.tsx │ │ ├── FlagKH.tsx │ │ ├── FlagKI.tsx │ │ ├── FlagKM.tsx │ │ ├── FlagKN.tsx │ │ ├── FlagKP.tsx │ │ ├── FlagKR.tsx │ │ ├── FlagKW.tsx │ │ ├── FlagKY.tsx │ │ ├── FlagKZ.tsx │ │ ├── FlagLA.tsx │ │ ├── FlagLB.tsx │ │ ├── FlagLC.tsx │ │ ├── FlagLI.tsx │ │ ├── FlagLK.tsx │ │ ├── FlagLR.tsx │ │ ├── FlagLS.tsx │ │ ├── FlagLT.tsx │ │ ├── FlagLU.tsx │ │ ├── FlagLV.tsx │ │ ├── FlagLY.tsx │ │ ├── FlagMA.tsx │ │ ├── FlagMC.tsx │ │ ├── FlagMD.tsx │ │ ├── FlagME.tsx │ │ ├── FlagMF.tsx │ │ ├── FlagMG.tsx │ │ ├── FlagMH.tsx │ │ ├── FlagMK.tsx │ │ ├── FlagML.tsx │ │ ├── FlagMM.tsx │ │ ├── FlagMN.tsx │ │ ├── FlagMO.tsx │ │ ├── FlagMP.tsx │ │ ├── FlagMQ.tsx │ │ ├── FlagMR.tsx │ │ ├── FlagMS.tsx │ │ ├── FlagMT.tsx │ │ ├── FlagMU.tsx │ │ ├── FlagMV.tsx │ │ ├── FlagMW.tsx │ │ ├── FlagMX.tsx │ │ ├── FlagMY.tsx │ │ ├── FlagMZ.tsx │ │ ├── FlagNA.tsx │ │ ├── FlagNC.tsx │ │ ├── FlagNE.tsx │ │ ├── FlagNF.tsx │ │ ├── FlagNG.tsx │ │ ├── FlagNI.tsx │ │ ├── FlagNL.tsx │ │ ├── FlagNO.tsx │ │ ├── FlagNP.tsx │ │ ├── FlagNR.tsx │ │ ├── FlagNU.tsx │ │ ├── FlagNZ.tsx │ │ ├── FlagOM.tsx │ │ ├── FlagPA.tsx │ │ ├── FlagPE.tsx │ │ ├── FlagPF.tsx │ │ ├── FlagPG.tsx │ │ ├── FlagPH.tsx │ │ ├── FlagPK.tsx │ │ ├── FlagPL.tsx │ │ ├── FlagPM.tsx │ │ ├── FlagPN.tsx │ │ ├── FlagPR.tsx │ │ ├── FlagPS.tsx │ │ ├── FlagPT.tsx │ │ ├── FlagPW.tsx │ │ ├── FlagPY.tsx │ │ ├── FlagQA.tsx │ │ ├── FlagRE.tsx │ │ ├── FlagRO.tsx │ │ ├── FlagRS.tsx │ │ ├── FlagRU.tsx │ │ ├── FlagRW.tsx │ │ ├── FlagSA.tsx │ │ ├── FlagSB.tsx │ │ ├── FlagSC.tsx │ │ ├── FlagSD.tsx │ │ ├── FlagSE.tsx │ │ ├── FlagSG.tsx │ │ ├── FlagSH.tsx │ │ ├── FlagSI.tsx │ │ ├── FlagSJ.tsx │ │ ├── FlagSK.tsx │ │ ├── FlagSL.tsx │ │ ├── FlagSM.tsx │ │ ├── FlagSN.tsx │ │ ├── FlagSO.tsx │ │ ├── FlagSR.tsx │ │ ├── FlagSS.tsx │ │ ├── FlagST.tsx │ │ ├── FlagSV.tsx │ │ ├── FlagSX.tsx │ │ ├── FlagSY.tsx │ │ ├── FlagSZ.tsx │ │ ├── FlagTC.tsx │ │ ├── FlagTD.tsx │ │ ├── FlagTF.tsx │ │ ├── FlagTG.tsx │ │ ├── FlagTH.tsx │ │ ├── FlagTJ.tsx │ │ ├── FlagTK.tsx │ │ ├── FlagTL.tsx │ │ ├── FlagTM.tsx │ │ ├── FlagTN.tsx │ │ ├── FlagTO.tsx │ │ ├── FlagTR.tsx │ │ ├── FlagTT.tsx │ │ ├── FlagTV.tsx │ │ ├── FlagTW.tsx │ │ ├── FlagTZ.tsx │ │ ├── FlagUA.tsx │ │ ├── FlagUG.tsx │ │ ├── FlagUM.tsx │ │ ├── FlagUS.tsx │ │ ├── FlagUY.tsx │ │ ├── FlagUZ.tsx │ │ ├── FlagVA.tsx │ │ ├── FlagVC.tsx │ │ ├── FlagVE.tsx │ │ ├── FlagVG.tsx │ │ ├── FlagVI.tsx │ │ ├── FlagVN.tsx │ │ ├── FlagVU.tsx │ │ ├── FlagWF.tsx │ │ ├── FlagWS.tsx │ │ ├── FlagXK.tsx │ │ ├── FlagYE.tsx │ │ ├── FlagYT.tsx │ │ ├── FlagZA.tsx │ │ ├── FlagZM.tsx │ │ ├── FlagZW.tsx │ │ └── index.ts ├── loader.js ├── markdown.js ├── notification.js ├── profile │ ├── check-radio.js │ ├── email-warning.js │ ├── header.js │ ├── linked-accounts.js │ ├── metadata-fields.js │ ├── progress.js │ ├── rewards │ │ └── holopin.js │ └── settings.js ├── theme.js ├── type.js └── youtube.js ├── hooks ├── useAuth.js ├── useCountdown.js └── useMarketo.js ├── lib ├── about.js ├── api.js ├── config.js ├── createMetaTitle.js ├── donate.js ├── events.js ├── format.js ├── index.js ├── participation.js ├── profile.js ├── report.js ├── sammy.js └── sponsors.js ├── pages ├── 404.js ├── _app.js ├── _document.js ├── about.js ├── auth.js ├── donate.js ├── events.js ├── index.js ├── logout.js ├── participation.js ├── profile.js ├── register.js └── report.js ├── styles └── sharedStyles.js └── themes ├── breakpoints.js ├── themes.js └── typography.js /.do/deploy.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/.do/deploy.template.yaml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report-a-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/.github/ISSUE_TEMPLATE/report-a-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggest-a-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/.github/ISSUE_TEMPLATE/suggest-a-feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/.github/workflows/deps.sh -------------------------------------------------------------------------------- /.github/workflows/deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/.github/workflows/deps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/install.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/.husky/install.mjs -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- 1 | { 2 | "*": "prettier --write --ignore-unknown" 3 | } 4 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.19.1 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/SECURITY.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/package.json -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by src/build 2 | robots.txt 3 | sitemap.xml 4 | -------------------------------------------------------------------------------- /public/.well-known/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/public/.well-known/security.txt -------------------------------------------------------------------------------- /public/2logo-hacktoberfest-12--hero.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/public/2logo-hacktoberfest-12--hero.webm -------------------------------------------------------------------------------- /public/health: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /public/logo-hacktoberfest-12--hero.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/public/logo-hacktoberfest-12--hero.mov -------------------------------------------------------------------------------- /public/logo-hacktoberfest-12--hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/public/logo-hacktoberfest-12--hero.png -------------------------------------------------------------------------------- /public/logo-hacktoberfest-12--hero.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/public/logo-hacktoberfest-12--hero.webm -------------------------------------------------------------------------------- /src/assets/brand-guidelines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/brand-guidelines.pdf -------------------------------------------------------------------------------- /src/assets/brand-kit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/brand-kit.zip -------------------------------------------------------------------------------- /src/assets/hacktoberfest2025-sponsorship_prospectus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/hacktoberfest2025-sponsorship_prospectus.pdf -------------------------------------------------------------------------------- /src/assets/img/8-bit-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/8-bit-down.svg -------------------------------------------------------------------------------- /src/assets/img/advocates/cloudflare-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/advocates/cloudflare-hero.svg -------------------------------------------------------------------------------- /src/assets/img/advocates/cloudflare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/advocates/cloudflare.svg -------------------------------------------------------------------------------- /src/assets/img/ascii-404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/ascii-404.svg -------------------------------------------------------------------------------- /src/assets/img/ascii-about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/ascii-about.svg -------------------------------------------------------------------------------- /src/assets/img/ascii-brandkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/ascii-brandkit.svg -------------------------------------------------------------------------------- /src/assets/img/ascii-donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/ascii-donate.svg -------------------------------------------------------------------------------- /src/assets/img/ascii-events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/ascii-events.svg -------------------------------------------------------------------------------- /src/assets/img/ascii-participation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/ascii-participation.svg -------------------------------------------------------------------------------- /src/assets/img/ascii-report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/ascii-report.svg -------------------------------------------------------------------------------- /src/assets/img/ascii-share--black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/ascii-share--black.svg -------------------------------------------------------------------------------- /src/assets/img/ascii-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/ascii-share.svg -------------------------------------------------------------------------------- /src/assets/img/ascii-sponsors--black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/ascii-sponsors--black.svg -------------------------------------------------------------------------------- /src/assets/img/ascii-sponsors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/ascii-sponsors.svg -------------------------------------------------------------------------------- /src/assets/img/bg-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/bg-footer.svg -------------------------------------------------------------------------------- /src/assets/img/bg-grain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/bg-grain.png -------------------------------------------------------------------------------- /src/assets/img/bg-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/bg-header.svg -------------------------------------------------------------------------------- /src/assets/img/bg-hero-secondary--bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/bg-hero-secondary--bottom.svg -------------------------------------------------------------------------------- /src/assets/img/bg-hero-secondary--top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/bg-hero-secondary--top.svg -------------------------------------------------------------------------------- /src/assets/img/bubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/bubble.svg -------------------------------------------------------------------------------- /src/assets/img/council/bekah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/council/bekah.jpg -------------------------------------------------------------------------------- /src/assets/img/council/duane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/council/duane.jpg -------------------------------------------------------------------------------- /src/assets/img/council/eddie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/council/eddie.jpg -------------------------------------------------------------------------------- /src/assets/img/council/lisa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/council/lisa.jpg -------------------------------------------------------------------------------- /src/assets/img/council/mason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/council/mason.jpg -------------------------------------------------------------------------------- /src/assets/img/curved-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/curved-arrow.svg -------------------------------------------------------------------------------- /src/assets/img/diamond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/diamond.svg -------------------------------------------------------------------------------- /src/assets/img/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/dots.svg -------------------------------------------------------------------------------- /src/assets/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/favicon.svg -------------------------------------------------------------------------------- /src/assets/img/founders/digitalocean-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/founders/digitalocean-hero.svg -------------------------------------------------------------------------------- /src/assets/img/founders/digitalocean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/founders/digitalocean.svg -------------------------------------------------------------------------------- /src/assets/img/founders/mlh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/founders/mlh.svg -------------------------------------------------------------------------------- /src/assets/img/globe-smile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/globe-smile.svg -------------------------------------------------------------------------------- /src/assets/img/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/globe.svg -------------------------------------------------------------------------------- /src/assets/img/heroes/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/heroes/about.svg -------------------------------------------------------------------------------- /src/assets/img/heroes/donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/heroes/donate.svg -------------------------------------------------------------------------------- /src/assets/img/heroes/events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/heroes/events.svg -------------------------------------------------------------------------------- /src/assets/img/heroes/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/heroes/loading.svg -------------------------------------------------------------------------------- /src/assets/img/heroes/participation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/heroes/participation.svg -------------------------------------------------------------------------------- /src/assets/img/heroes/registration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/heroes/registration.svg -------------------------------------------------------------------------------- /src/assets/img/heroes/report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/heroes/report.svg -------------------------------------------------------------------------------- /src/assets/img/heroicon-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/heroicon-animation.gif -------------------------------------------------------------------------------- /src/assets/img/icons/icon-pixel-bullhorn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/icon-pixel-bullhorn.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-pixel-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/icon-pixel-file.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-pixel-globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/icon-pixel-globe.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-pixel-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/icon-pixel-heart.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-pixel-pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/icon-pixel-pencil.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-pixel-question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/icon-pixel-question.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-pixel-thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/icon-pixel-thumbs-up.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-pixel-users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/icon-pixel-users.svg -------------------------------------------------------------------------------- /src/assets/img/icons/opensource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/opensource.svg -------------------------------------------------------------------------------- /src/assets/img/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/play.svg -------------------------------------------------------------------------------- /src/assets/img/icons/social-icons/blue-sky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/social-icons/blue-sky.svg -------------------------------------------------------------------------------- /src/assets/img/icons/social-icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/social-icons/discord.svg -------------------------------------------------------------------------------- /src/assets/img/icons/social-icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/social-icons/email.svg -------------------------------------------------------------------------------- /src/assets/img/icons/social-icons/faceook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/social-icons/faceook.svg -------------------------------------------------------------------------------- /src/assets/img/icons/social-icons/hackernews.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/social-icons/hackernews.svg -------------------------------------------------------------------------------- /src/assets/img/icons/social-icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/social-icons/linkedin.svg -------------------------------------------------------------------------------- /src/assets/img/icons/social-icons/mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/social-icons/mastodon.svg -------------------------------------------------------------------------------- /src/assets/img/icons/social-icons/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/social-icons/reddit.svg -------------------------------------------------------------------------------- /src/assets/img/icons/social-icons/x-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/icons/social-icons/x-twitter.svg -------------------------------------------------------------------------------- /src/assets/img/logo-digitalocean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/logo-digitalocean.svg -------------------------------------------------------------------------------- /src/assets/img/logo-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/logo-github.svg -------------------------------------------------------------------------------- /src/assets/img/logo-gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/logo-gitlab.svg -------------------------------------------------------------------------------- /src/assets/img/logo-hacktoberfest-11--beige.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/logo-hacktoberfest-11--beige.svg -------------------------------------------------------------------------------- /src/assets/img/logo-hacktoberfest-11--footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/logo-hacktoberfest-11--footer.svg -------------------------------------------------------------------------------- /src/assets/img/logo-hacktoberfest-11--green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/logo-hacktoberfest-11--green.svg -------------------------------------------------------------------------------- /src/assets/img/logo-hacktoberfest-11--mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/logo-hacktoberfest-11--mark.svg -------------------------------------------------------------------------------- /src/assets/img/logo-hacktoberfest-11--submitted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/logo-hacktoberfest-11--submitted.svg -------------------------------------------------------------------------------- /src/assets/img/logo-hacktoberfest-12--footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/logo-hacktoberfest-12--footer.svg -------------------------------------------------------------------------------- /src/assets/img/logo-hacktoberfest-12--hero.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/logo-hacktoberfest-12--hero.webm -------------------------------------------------------------------------------- /src/assets/img/logo-hacktoberfest-12--nav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/logo-hacktoberfest-12--nav.svg -------------------------------------------------------------------------------- /src/assets/img/opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/opengraph.png -------------------------------------------------------------------------------- /src/assets/img/partners/cloud-native-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/cloud-native-white.svg -------------------------------------------------------------------------------- /src/assets/img/partners/cloud-native.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/cloud-native.svg -------------------------------------------------------------------------------- /src/assets/img/partners/dev-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/dev-white.svg -------------------------------------------------------------------------------- /src/assets/img/partners/dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/dev.svg -------------------------------------------------------------------------------- /src/assets/img/partners/github-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/github-white.svg -------------------------------------------------------------------------------- /src/assets/img/partners/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/github.svg -------------------------------------------------------------------------------- /src/assets/img/partners/github_education-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/github_education-white.svg -------------------------------------------------------------------------------- /src/assets/img/partners/github_education.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/github_education.svg -------------------------------------------------------------------------------- /src/assets/img/partners/gitlab-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/gitlab-white.svg -------------------------------------------------------------------------------- /src/assets/img/partners/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/gitlab.svg -------------------------------------------------------------------------------- /src/assets/img/partners/holopin-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/holopin-white.svg -------------------------------------------------------------------------------- /src/assets/img/partners/holopin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/holopin.svg -------------------------------------------------------------------------------- /src/assets/img/partners/mlh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/mlh.svg -------------------------------------------------------------------------------- /src/assets/img/partners/opensource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/opensource.svg -------------------------------------------------------------------------------- /src/assets/img/partners/osi-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/partners/osi-white.svg -------------------------------------------------------------------------------- /src/assets/img/potion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/potion.svg -------------------------------------------------------------------------------- /src/assets/img/resource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/resource.svg -------------------------------------------------------------------------------- /src/assets/img/sloan-the-sloth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/sloan-the-sloth.svg -------------------------------------------------------------------------------- /src/assets/img/space-helmet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/space-helmet.svg -------------------------------------------------------------------------------- /src/assets/img/sponsors/amd-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/sponsors/amd-white.svg -------------------------------------------------------------------------------- /src/assets/img/sponsors/amd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/sponsors/amd.svg -------------------------------------------------------------------------------- /src/assets/img/sponsors/auth0-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/sponsors/auth0-white.svg -------------------------------------------------------------------------------- /src/assets/img/sponsors/auth0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/sponsors/auth0.svg -------------------------------------------------------------------------------- /src/assets/img/sustainers/quira-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/sustainers/quira-hero.svg -------------------------------------------------------------------------------- /src/assets/img/sustainers/quira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/sustainers/quira.svg -------------------------------------------------------------------------------- /src/assets/img/top-dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/top-dots.svg -------------------------------------------------------------------------------- /src/assets/img/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/assets/img/trophy.svg -------------------------------------------------------------------------------- /src/build/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/build/index.mjs -------------------------------------------------------------------------------- /src/build/post/cache.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/build/post/cache.mjs -------------------------------------------------------------------------------- /src/build/post/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/build/post/index.mjs -------------------------------------------------------------------------------- /src/build/robots.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/build/robots.mjs -------------------------------------------------------------------------------- /src/build/sitemap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/build/sitemap.mjs -------------------------------------------------------------------------------- /src/components/Accordion/Accordion.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Accordion/Accordion.styles.js -------------------------------------------------------------------------------- /src/components/Accordion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Accordion/index.js -------------------------------------------------------------------------------- /src/components/AccordionCouncil/AccordionCouncil.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/AccordionCouncil/AccordionCouncil.styles.js -------------------------------------------------------------------------------- /src/components/AccordionCouncil/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/AccordionCouncil/index.js -------------------------------------------------------------------------------- /src/components/AccordionSponsor/AccordionSponsor.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/AccordionSponsor/AccordionSponsor.styles.js -------------------------------------------------------------------------------- /src/components/AccordionSponsor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/AccordionSponsor/index.js -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Avatar/Avatar.styles.js -------------------------------------------------------------------------------- /src/components/Avatar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Avatar/index.js -------------------------------------------------------------------------------- /src/components/ButtonMain/ButtonMain.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/ButtonMain/ButtonMain.styles.js -------------------------------------------------------------------------------- /src/components/ButtonMain/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/ButtonMain/index.js -------------------------------------------------------------------------------- /src/components/Card/Card.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Card/Card.styles.js -------------------------------------------------------------------------------- /src/components/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Card/index.js -------------------------------------------------------------------------------- /src/components/CardCallout/CardCallout.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/CardCallout/CardCallout.styles.js -------------------------------------------------------------------------------- /src/components/CardCallout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/CardCallout/index.js -------------------------------------------------------------------------------- /src/components/Container/Container.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Container/Container.styles.js -------------------------------------------------------------------------------- /src/components/Container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Container/index.js -------------------------------------------------------------------------------- /src/components/ContentMaster/ContentMaster.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/ContentMaster/ContentMaster.styles.js -------------------------------------------------------------------------------- /src/components/ContentMaster/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/ContentMaster/index.js -------------------------------------------------------------------------------- /src/components/ContentSide/ContentSide.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/ContentSide/ContentSide.styles.js -------------------------------------------------------------------------------- /src/components/ContentSide/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/ContentSide/index.js -------------------------------------------------------------------------------- /src/components/Corners/Corners.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Corners/Corners.styles.js -------------------------------------------------------------------------------- /src/components/Corners/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Corners/index.js -------------------------------------------------------------------------------- /src/components/Countdown/Countdown.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Countdown/Countdown.styles.js -------------------------------------------------------------------------------- /src/components/Countdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Countdown/index.js -------------------------------------------------------------------------------- /src/components/CustomLink/CustomLink.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/CustomLink/CustomLink.styles.js -------------------------------------------------------------------------------- /src/components/CustomLink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/CustomLink/index.js -------------------------------------------------------------------------------- /src/components/Divider/Divider.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Divider/Divider.styles.js -------------------------------------------------------------------------------- /src/components/Divider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Divider/index.js -------------------------------------------------------------------------------- /src/components/DividerRow/DividerRow.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/DividerRow/DividerRow.styles.js -------------------------------------------------------------------------------- /src/components/DividerRow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/DividerRow/index.js -------------------------------------------------------------------------------- /src/components/Event/Event.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Event/Event.styles.js -------------------------------------------------------------------------------- /src/components/Event/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Event/index.js -------------------------------------------------------------------------------- /src/components/Events/Events.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Events/Events.styles.js -------------------------------------------------------------------------------- /src/components/Events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Events/index.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Footer/Footer.styles.js -------------------------------------------------------------------------------- /src/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Footer/index.js -------------------------------------------------------------------------------- /src/components/Glitch/Glitch.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Glitch/Glitch.styles.js -------------------------------------------------------------------------------- /src/components/Glitch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Glitch/index.js -------------------------------------------------------------------------------- /src/components/Header/Header.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Header/Header.styles.js -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Hero/Hero.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Hero/Hero.styles.js -------------------------------------------------------------------------------- /src/components/Hero/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Hero/index.js -------------------------------------------------------------------------------- /src/components/HeroSecondary/HeroSecondary.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/HeroSecondary/HeroSecondary.styles.js -------------------------------------------------------------------------------- /src/components/HeroSecondary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/HeroSecondary/index.js -------------------------------------------------------------------------------- /src/components/HomeIntro/HomeIntro.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/HomeIntro/HomeIntro.styles.js -------------------------------------------------------------------------------- /src/components/HomeIntro/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/HomeIntro/index.js -------------------------------------------------------------------------------- /src/components/Input/Input.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Input/Input.styles.js -------------------------------------------------------------------------------- /src/components/Input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Input/index.js -------------------------------------------------------------------------------- /src/components/Layout/Layout.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Layout/Layout.styles.js -------------------------------------------------------------------------------- /src/components/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Layout/index.js -------------------------------------------------------------------------------- /src/components/Marquee/Marquee.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Marquee/Marquee.styles.js -------------------------------------------------------------------------------- /src/components/Marquee/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Marquee/index.js -------------------------------------------------------------------------------- /src/components/Progress/Progress.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Progress/Progress.styles.js -------------------------------------------------------------------------------- /src/components/Progress/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Progress/index.js -------------------------------------------------------------------------------- /src/components/PullRequest/PullRequest.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/PullRequest/PullRequest.styles.js -------------------------------------------------------------------------------- /src/components/PullRequest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/PullRequest/index.js -------------------------------------------------------------------------------- /src/components/RevealSection/RevealSection.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/RevealSection/RevealSection.styles.js -------------------------------------------------------------------------------- /src/components/RevealSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/RevealSection/index.js -------------------------------------------------------------------------------- /src/components/Section/Section.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Section/Section.styles.js -------------------------------------------------------------------------------- /src/components/Section/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Section/index.js -------------------------------------------------------------------------------- /src/components/SectionDivider/SectionDivider.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/SectionDivider/SectionDivider.styles.js -------------------------------------------------------------------------------- /src/components/SectionDivider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/SectionDivider/index.js -------------------------------------------------------------------------------- /src/components/Select/Select.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Select/Select.styles.js -------------------------------------------------------------------------------- /src/components/Select/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Select/index.js -------------------------------------------------------------------------------- /src/components/SideBySide/SideBySide.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/SideBySide/SideBySide.styles.js -------------------------------------------------------------------------------- /src/components/SideBySide/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/SideBySide/index.js -------------------------------------------------------------------------------- /src/components/SocialIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/SocialIcons.js -------------------------------------------------------------------------------- /src/components/SponsorForm/SponsorForm.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/SponsorForm/SponsorForm.styles.js -------------------------------------------------------------------------------- /src/components/SponsorForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/SponsorForm/index.js -------------------------------------------------------------------------------- /src/components/Sponsors/Sponsors.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Sponsors/Sponsors.styles.js -------------------------------------------------------------------------------- /src/components/Sponsors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Sponsors/index.js -------------------------------------------------------------------------------- /src/components/SpotHeader/SpotHeader.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/SpotHeader/SpotHeader.styles.js -------------------------------------------------------------------------------- /src/components/SpotHeader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/SpotHeader/index.js -------------------------------------------------------------------------------- /src/components/TextLink/TextLink.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/TextLink/TextLink.styles.js -------------------------------------------------------------------------------- /src/components/TextLink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/TextLink/index.js -------------------------------------------------------------------------------- /src/components/Wistia/Wistia.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Wistia/Wistia.styles.js -------------------------------------------------------------------------------- /src/components/Wistia/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/Wistia/index.js -------------------------------------------------------------------------------- /src/components/dorknamic-island.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/dorknamic-island.js -------------------------------------------------------------------------------- /src/components/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/form.js -------------------------------------------------------------------------------- /src/components/icons/Download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/Download.js -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAD.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAF.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAI.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAL.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAQ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAS.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAT.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAU.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAU.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAW.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAW.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAX.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagAZ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagAZ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBB.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBD.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBF.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBH.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBH.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBI.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBJ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBJ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBL.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBQ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBS.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBT.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBV.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBV.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBW.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBW.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBY.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBY.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagBZ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagBZ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCC.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCD.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCF.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCH.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCH.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCI.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCK.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCL.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCU.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCU.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCV.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCV.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCW.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCW.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCX.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCY.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCY.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagCZ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagCZ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagDE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagDE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagDJ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagDJ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagDK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagDK.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagDM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagDM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagDO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagDO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagDZ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagDZ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagEC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagEC.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagEE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagEE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagEG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagEG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagEH.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagEH.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagER.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagER.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagES.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagES.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagET.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagET.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagFI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagFI.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagFJ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagFJ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagFK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagFK.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagFM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagFM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagFO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagFO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagFR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagFR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGB.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGD.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGF.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGH.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGH.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGI.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGL.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGP.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGQ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGS.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGT.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGU.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGU.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGW.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGW.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagGY.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagGY.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagHK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagHK.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagHM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagHM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagHN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagHN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagHR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagHR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagHT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagHT.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagHU.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagHU.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagID.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagID.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagIE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagIE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagIL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagIL.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagIM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagIM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagIN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagIN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagIO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagIO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagIQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagIQ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagIR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagIR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagIS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagIS.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagIT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagIT.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagJE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagJE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagJM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagJM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagJO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagJO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagJP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagJP.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagKE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagKE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagKG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagKG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagKH.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagKH.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagKI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagKI.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagKM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagKM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagKN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagKN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagKP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagKP.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagKR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagKR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagKW.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagKW.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagKY.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagKY.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagKZ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagKZ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagLA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagLA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagLB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagLB.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagLC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagLC.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagLI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagLI.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagLK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagLK.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagLR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagLR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagLS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagLS.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagLT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagLT.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagLU.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagLU.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagLV.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagLV.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagLY.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagLY.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMC.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMD.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagME.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagME.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMF.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMH.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMH.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMK.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagML.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagML.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMP.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMQ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMS.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMT.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMU.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMU.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMV.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMV.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMW.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMW.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMX.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMY.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMY.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagMZ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagMZ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNC.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNF.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNI.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNL.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNP.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNU.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNU.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagNZ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagNZ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagOM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagOM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPF.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPH.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPH.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPK.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPL.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPS.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPT.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPW.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPW.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagPY.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagPY.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagQA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagQA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagRE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagRE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagRO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagRO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagRS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagRS.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagRU.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagRU.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagRW.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagRW.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSB.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSC.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSD.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSH.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSH.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSI.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSJ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSJ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSK.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSL.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSS.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagST.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagST.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSV.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSV.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSX.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSY.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSY.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagSZ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagSZ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTC.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTD.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTF.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTH.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTH.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTJ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTJ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTK.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTL.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTO.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTR.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTT.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTV.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTV.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTW.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTW.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagTZ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagTZ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagUA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagUA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagUG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagUG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagUM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagUM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagUS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagUS.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagUY.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagUY.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagUZ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagUZ.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagVA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagVA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagVC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagVC.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagVE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagVE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagVG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagVG.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagVI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagVI.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagVN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagVN.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagVU.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagVU.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagWF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagWF.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagWS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagWS.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagXK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagXK.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagYE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagYE.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagYT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagYT.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagZA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagZA.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagZM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagZM.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/FlagZW.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/FlagZW.tsx -------------------------------------------------------------------------------- /src/components/icons/flags/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/icons/flags/index.ts -------------------------------------------------------------------------------- /src/components/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/loader.js -------------------------------------------------------------------------------- /src/components/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/markdown.js -------------------------------------------------------------------------------- /src/components/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/notification.js -------------------------------------------------------------------------------- /src/components/profile/check-radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/profile/check-radio.js -------------------------------------------------------------------------------- /src/components/profile/email-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/profile/email-warning.js -------------------------------------------------------------------------------- /src/components/profile/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/profile/header.js -------------------------------------------------------------------------------- /src/components/profile/linked-accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/profile/linked-accounts.js -------------------------------------------------------------------------------- /src/components/profile/metadata-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/profile/metadata-fields.js -------------------------------------------------------------------------------- /src/components/profile/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/profile/progress.js -------------------------------------------------------------------------------- /src/components/profile/rewards/holopin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/profile/rewards/holopin.js -------------------------------------------------------------------------------- /src/components/profile/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/profile/settings.js -------------------------------------------------------------------------------- /src/components/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/theme.js -------------------------------------------------------------------------------- /src/components/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/type.js -------------------------------------------------------------------------------- /src/components/youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/components/youtube.js -------------------------------------------------------------------------------- /src/hooks/useAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/hooks/useAuth.js -------------------------------------------------------------------------------- /src/hooks/useCountdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/hooks/useCountdown.js -------------------------------------------------------------------------------- /src/hooks/useMarketo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/hooks/useMarketo.js -------------------------------------------------------------------------------- /src/lib/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/about.js -------------------------------------------------------------------------------- /src/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/api.js -------------------------------------------------------------------------------- /src/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/config.js -------------------------------------------------------------------------------- /src/lib/createMetaTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/createMetaTitle.js -------------------------------------------------------------------------------- /src/lib/donate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/donate.js -------------------------------------------------------------------------------- /src/lib/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/events.js -------------------------------------------------------------------------------- /src/lib/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/format.js -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/index.js -------------------------------------------------------------------------------- /src/lib/participation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/participation.js -------------------------------------------------------------------------------- /src/lib/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/profile.js -------------------------------------------------------------------------------- /src/lib/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/report.js -------------------------------------------------------------------------------- /src/lib/sammy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/sammy.js -------------------------------------------------------------------------------- /src/lib/sponsors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/lib/sponsors.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/_app.js -------------------------------------------------------------------------------- /src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/_document.js -------------------------------------------------------------------------------- /src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/about.js -------------------------------------------------------------------------------- /src/pages/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/auth.js -------------------------------------------------------------------------------- /src/pages/donate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/donate.js -------------------------------------------------------------------------------- /src/pages/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/events.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/logout.js -------------------------------------------------------------------------------- /src/pages/participation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/participation.js -------------------------------------------------------------------------------- /src/pages/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/profile.js -------------------------------------------------------------------------------- /src/pages/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/register.js -------------------------------------------------------------------------------- /src/pages/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/pages/report.js -------------------------------------------------------------------------------- /src/styles/sharedStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/styles/sharedStyles.js -------------------------------------------------------------------------------- /src/themes/breakpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/themes/breakpoints.js -------------------------------------------------------------------------------- /src/themes/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/themes/themes.js -------------------------------------------------------------------------------- /src/themes/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfest/hacktoberfest-2022/HEAD/src/themes/typography.js --------------------------------------------------------------------------------