├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── auto_assign.yml └── workflows │ ├── e2e-ci.yml │ ├── pr-comment-netlify-link.yml │ └── tests.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .vscode └── extensions.json ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── YanivWeinshtein.json ├── _redirects ├── components ├── buttons │ ├── basicButton.tsx │ └── socialButton.tsx ├── description │ ├── Description.tsx │ └── description.module.scss ├── label │ ├── label.module.scss │ └── label.tsx ├── language │ └── useTranslator.ts ├── layout │ ├── footer │ │ ├── footer.module.scss │ │ └── footer.tsx │ ├── layout.tsx │ └── navbar │ │ ├── navbar.language.json │ │ ├── navbar.module.scss │ │ └── navbar.tsx ├── main-page-description │ ├── MainPageDescription.language.json │ ├── MainPageDescription.module.scss │ └── MainPageDescription.tsx ├── os-rel-design │ ├── ImageOptions │ │ ├── ImageOptions.module.scss │ │ └── ImageOptions.tsx │ ├── rectangleComponent │ │ ├── RectangleComponent.module.scss │ │ └── RectangleComponent.tsx │ └── squerComponent │ │ ├── SquerComponent.module.scss │ │ └── SquerComponent.tsx ├── personCard │ ├── personCard.module.scss │ └── personCard.tsx ├── projectPage │ ├── ProjectPage.module.scss │ ├── projectPage.tsx │ └── technologies │ │ ├── Technologies.module.scss │ │ └── Technologies.tsx ├── showMore │ └── showMore.tsx ├── socialNetworks │ ├── socialNetworks.module.scss │ └── socialNetworks.tsx └── typography │ └── title.tsx ├── docs └── contributing.md ├── e2e └── home.spec.ts ├── netlify.toml ├── next-env.d.ts ├── package.json ├── pages ├── _app.tsx ├── articles.tsx ├── index.tsx ├── os-rel-design.tsx └── projects.tsx ├── people ├── AdirKandel.json ├── AdirSlutzki.json ├── AlinaShahmur.json ├── AlonJoshua.json ├── AmitBarletz.json ├── AnnaDinaburgVulikh.json ├── AnnaHino.json ├── AviadHitner.json ├── AvnerRussler.json ├── BarakBrudo.json ├── BaruchOdem.json ├── BenjaminGruenbaum.json ├── BrianYagodnik.json ├── DaniSofer.json ├── DanielHermon.json ├── DavidMarom.json ├── DavidSabag.json ├── EladMotzny.json ├── EladTal.json ├── ErezBiren.json ├── ErezHod.json ├── EvyatarAlush.json ├── GalyaBar.json ├── GuySheffer.json ├── GuyYaffe.json ├── HadarRosenman.json ├── HagarShilo.json ├── HannanelGershinsky.json ├── HilaFish.json ├── IdoBarnea.json ├── IdoMandekman.json ├── InbarDanieli.json ├── ItayAdler.json ├── JacobRakhamimov.json ├── KobiGalanty.json ├── LiranTal.json ├── MichalPorag.json ├── NoaMilshtein.json ├── OlgaShebeko.json ├── OmriBarZik.json ├── OrYam.json ├── OrinZinger.json ├── OringelB.json ├── OzIzhak.json ├── RanIsenberg.json ├── RinaOksman.json ├── RotemLurxHorovitz.json ├── SagiLevi.json ├── SaharHagbi.json ├── SaraMazalMorozov.json ├── ShayGazit.json ├── ShirZabolotny.json ├── ShmuelShoshtari.json ├── TomerBrisker.json ├── TomerFigenblatt.json ├── UriShaked.json ├── YairLevy.json ├── YardenMikhaloff.json ├── YedidyaRashi.json ├── YehudaKahan.json ├── YishayMendelsohn.json ├── YohayNahmany.json ├── YonatanBenAvraham.json ├── YonatanKra.json ├── YonatanWolloch.json ├── YoniMelki.json ├── YuvalAboulafia.json ├── ZivKalderon.json ├── anattzlil.json ├── aryehbeitz.json ├── avivnakar.json ├── davidmeirlevy.json ├── eldadfux.json ├── itayHaephrati.json ├── kobikadosh.json ├── leorrose.json ├── moshevilner.json ├── naorpeled.json ├── noam-honig.json ├── ronfybish.json ├── yanaiedri.json └── yonatangross.json ├── playwright.config.ts ├── prettier.config.js ├── public ├── Star 1.png ├── Star 1.svg ├── assets │ ├── Heart.svg │ ├── logo.svg │ ├── rectangleBackground.svg │ └── squerBackground.svg ├── favicon.ico ├── favicon.png ├── images │ ├── logo-2.0.svg │ └── people │ │ └── EladTal14.jpeg └── vercel.svg ├── schemas └── people-schema.json ├── scripts └── open-browser.js ├── services ├── metaData.ts └── people.ts ├── static └── metadata.ts ├── styles ├── Home.module.scss ├── colors.ts ├── globals.scss ├── media.scss ├── os-rel-design.module.scss └── projects.module.scss ├── tsconfig.json └── utils ├── canvas.ts ├── mediaQueries.ts └── randomShuffle.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals", "prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/.github/workflows/e2e-ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr-comment-netlify-link.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/.github/workflows/pr-comment-netlify-link.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | out 3 | node_modules 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/README.md -------------------------------------------------------------------------------- /YanivWeinshtein.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/YanivWeinshtein.json -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/_redirects -------------------------------------------------------------------------------- /components/buttons/basicButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/buttons/basicButton.tsx -------------------------------------------------------------------------------- /components/buttons/socialButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/buttons/socialButton.tsx -------------------------------------------------------------------------------- /components/description/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/description/Description.tsx -------------------------------------------------------------------------------- /components/description/description.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/description/description.module.scss -------------------------------------------------------------------------------- /components/label/label.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/label/label.module.scss -------------------------------------------------------------------------------- /components/label/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/label/label.tsx -------------------------------------------------------------------------------- /components/language/useTranslator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/language/useTranslator.ts -------------------------------------------------------------------------------- /components/layout/footer/footer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/layout/footer/footer.module.scss -------------------------------------------------------------------------------- /components/layout/footer/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/layout/footer/footer.tsx -------------------------------------------------------------------------------- /components/layout/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/layout/layout.tsx -------------------------------------------------------------------------------- /components/layout/navbar/navbar.language.json: -------------------------------------------------------------------------------- 1 | { 2 | "add_me": "הוסיפו אותי" 3 | } 4 | -------------------------------------------------------------------------------- /components/layout/navbar/navbar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/layout/navbar/navbar.module.scss -------------------------------------------------------------------------------- /components/layout/navbar/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/layout/navbar/navbar.tsx -------------------------------------------------------------------------------- /components/main-page-description/MainPageDescription.language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/main-page-description/MainPageDescription.language.json -------------------------------------------------------------------------------- /components/main-page-description/MainPageDescription.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/main-page-description/MainPageDescription.module.scss -------------------------------------------------------------------------------- /components/main-page-description/MainPageDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/main-page-description/MainPageDescription.tsx -------------------------------------------------------------------------------- /components/os-rel-design/ImageOptions/ImageOptions.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/os-rel-design/ImageOptions/ImageOptions.module.scss -------------------------------------------------------------------------------- /components/os-rel-design/ImageOptions/ImageOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/os-rel-design/ImageOptions/ImageOptions.tsx -------------------------------------------------------------------------------- /components/os-rel-design/rectangleComponent/RectangleComponent.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/os-rel-design/rectangleComponent/RectangleComponent.module.scss -------------------------------------------------------------------------------- /components/os-rel-design/rectangleComponent/RectangleComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/os-rel-design/rectangleComponent/RectangleComponent.tsx -------------------------------------------------------------------------------- /components/os-rel-design/squerComponent/SquerComponent.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/os-rel-design/squerComponent/SquerComponent.module.scss -------------------------------------------------------------------------------- /components/os-rel-design/squerComponent/SquerComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/os-rel-design/squerComponent/SquerComponent.tsx -------------------------------------------------------------------------------- /components/personCard/personCard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/personCard/personCard.module.scss -------------------------------------------------------------------------------- /components/personCard/personCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/personCard/personCard.tsx -------------------------------------------------------------------------------- /components/projectPage/ProjectPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/projectPage/ProjectPage.module.scss -------------------------------------------------------------------------------- /components/projectPage/projectPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/projectPage/projectPage.tsx -------------------------------------------------------------------------------- /components/projectPage/technologies/Technologies.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/projectPage/technologies/Technologies.module.scss -------------------------------------------------------------------------------- /components/projectPage/technologies/Technologies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/projectPage/technologies/Technologies.tsx -------------------------------------------------------------------------------- /components/showMore/showMore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/showMore/showMore.tsx -------------------------------------------------------------------------------- /components/socialNetworks/socialNetworks.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/socialNetworks/socialNetworks.module.scss -------------------------------------------------------------------------------- /components/socialNetworks/socialNetworks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/socialNetworks/socialNetworks.tsx -------------------------------------------------------------------------------- /components/typography/title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/components/typography/title.tsx -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /e2e/home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/e2e/home.spec.ts -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/netlify.toml -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/articles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/pages/articles.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/os-rel-design.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/pages/os-rel-design.tsx -------------------------------------------------------------------------------- /pages/projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/pages/projects.tsx -------------------------------------------------------------------------------- /people/AdirKandel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/AdirKandel.json -------------------------------------------------------------------------------- /people/AdirSlutzki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/AdirSlutzki.json -------------------------------------------------------------------------------- /people/AlinaShahmur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/AlinaShahmur.json -------------------------------------------------------------------------------- /people/AlonJoshua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/AlonJoshua.json -------------------------------------------------------------------------------- /people/AmitBarletz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/AmitBarletz.json -------------------------------------------------------------------------------- /people/AnnaDinaburgVulikh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/AnnaDinaburgVulikh.json -------------------------------------------------------------------------------- /people/AnnaHino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/AnnaHino.json -------------------------------------------------------------------------------- /people/AviadHitner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/AviadHitner.json -------------------------------------------------------------------------------- /people/AvnerRussler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/AvnerRussler.json -------------------------------------------------------------------------------- /people/BarakBrudo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/BarakBrudo.json -------------------------------------------------------------------------------- /people/BaruchOdem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/BaruchOdem.json -------------------------------------------------------------------------------- /people/BenjaminGruenbaum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/BenjaminGruenbaum.json -------------------------------------------------------------------------------- /people/BrianYagodnik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/BrianYagodnik.json -------------------------------------------------------------------------------- /people/DaniSofer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/DaniSofer.json -------------------------------------------------------------------------------- /people/DanielHermon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/DanielHermon.json -------------------------------------------------------------------------------- /people/DavidMarom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/DavidMarom.json -------------------------------------------------------------------------------- /people/DavidSabag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/DavidSabag.json -------------------------------------------------------------------------------- /people/EladMotzny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/EladMotzny.json -------------------------------------------------------------------------------- /people/EladTal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/EladTal.json -------------------------------------------------------------------------------- /people/ErezBiren.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/ErezBiren.json -------------------------------------------------------------------------------- /people/ErezHod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/ErezHod.json -------------------------------------------------------------------------------- /people/EvyatarAlush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/EvyatarAlush.json -------------------------------------------------------------------------------- /people/GalyaBar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/GalyaBar.json -------------------------------------------------------------------------------- /people/GuySheffer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/GuySheffer.json -------------------------------------------------------------------------------- /people/GuyYaffe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/GuyYaffe.json -------------------------------------------------------------------------------- /people/HadarRosenman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/HadarRosenman.json -------------------------------------------------------------------------------- /people/HagarShilo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/HagarShilo.json -------------------------------------------------------------------------------- /people/HannanelGershinsky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/HannanelGershinsky.json -------------------------------------------------------------------------------- /people/HilaFish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/HilaFish.json -------------------------------------------------------------------------------- /people/IdoBarnea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/IdoBarnea.json -------------------------------------------------------------------------------- /people/IdoMandekman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/IdoMandekman.json -------------------------------------------------------------------------------- /people/InbarDanieli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/InbarDanieli.json -------------------------------------------------------------------------------- /people/ItayAdler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/ItayAdler.json -------------------------------------------------------------------------------- /people/JacobRakhamimov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/JacobRakhamimov.json -------------------------------------------------------------------------------- /people/KobiGalanty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/KobiGalanty.json -------------------------------------------------------------------------------- /people/LiranTal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/LiranTal.json -------------------------------------------------------------------------------- /people/MichalPorag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/MichalPorag.json -------------------------------------------------------------------------------- /people/NoaMilshtein.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/NoaMilshtein.json -------------------------------------------------------------------------------- /people/OlgaShebeko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/OlgaShebeko.json -------------------------------------------------------------------------------- /people/OmriBarZik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/OmriBarZik.json -------------------------------------------------------------------------------- /people/OrYam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/OrYam.json -------------------------------------------------------------------------------- /people/OrinZinger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/OrinZinger.json -------------------------------------------------------------------------------- /people/OringelB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/OringelB.json -------------------------------------------------------------------------------- /people/OzIzhak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/OzIzhak.json -------------------------------------------------------------------------------- /people/RanIsenberg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/RanIsenberg.json -------------------------------------------------------------------------------- /people/RinaOksman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/RinaOksman.json -------------------------------------------------------------------------------- /people/RotemLurxHorovitz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/RotemLurxHorovitz.json -------------------------------------------------------------------------------- /people/SagiLevi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/SagiLevi.json -------------------------------------------------------------------------------- /people/SaharHagbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/SaharHagbi.json -------------------------------------------------------------------------------- /people/SaraMazalMorozov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/SaraMazalMorozov.json -------------------------------------------------------------------------------- /people/ShayGazit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/ShayGazit.json -------------------------------------------------------------------------------- /people/ShirZabolotny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/ShirZabolotny.json -------------------------------------------------------------------------------- /people/ShmuelShoshtari.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/ShmuelShoshtari.json -------------------------------------------------------------------------------- /people/TomerBrisker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/TomerBrisker.json -------------------------------------------------------------------------------- /people/TomerFigenblatt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/TomerFigenblatt.json -------------------------------------------------------------------------------- /people/UriShaked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/UriShaked.json -------------------------------------------------------------------------------- /people/YairLevy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/YairLevy.json -------------------------------------------------------------------------------- /people/YardenMikhaloff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/YardenMikhaloff.json -------------------------------------------------------------------------------- /people/YedidyaRashi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/YedidyaRashi.json -------------------------------------------------------------------------------- /people/YehudaKahan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/YehudaKahan.json -------------------------------------------------------------------------------- /people/YishayMendelsohn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/YishayMendelsohn.json -------------------------------------------------------------------------------- /people/YohayNahmany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/YohayNahmany.json -------------------------------------------------------------------------------- /people/YonatanBenAvraham.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/YonatanBenAvraham.json -------------------------------------------------------------------------------- /people/YonatanKra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/YonatanKra.json -------------------------------------------------------------------------------- /people/YonatanWolloch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/YonatanWolloch.json -------------------------------------------------------------------------------- /people/YoniMelki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/YoniMelki.json -------------------------------------------------------------------------------- /people/YuvalAboulafia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/YuvalAboulafia.json -------------------------------------------------------------------------------- /people/ZivKalderon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/ZivKalderon.json -------------------------------------------------------------------------------- /people/anattzlil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/anattzlil.json -------------------------------------------------------------------------------- /people/aryehbeitz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/aryehbeitz.json -------------------------------------------------------------------------------- /people/avivnakar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/avivnakar.json -------------------------------------------------------------------------------- /people/davidmeirlevy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/davidmeirlevy.json -------------------------------------------------------------------------------- /people/eldadfux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/eldadfux.json -------------------------------------------------------------------------------- /people/itayHaephrati.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/itayHaephrati.json -------------------------------------------------------------------------------- /people/kobikadosh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/kobikadosh.json -------------------------------------------------------------------------------- /people/leorrose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/leorrose.json -------------------------------------------------------------------------------- /people/moshevilner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/moshevilner.json -------------------------------------------------------------------------------- /people/naorpeled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/naorpeled.json -------------------------------------------------------------------------------- /people/noam-honig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/noam-honig.json -------------------------------------------------------------------------------- /people/ronfybish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/ronfybish.json -------------------------------------------------------------------------------- /people/yanaiedri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/yanaiedri.json -------------------------------------------------------------------------------- /people/yonatangross.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/people/yonatangross.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/Star 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/public/Star 1.png -------------------------------------------------------------------------------- /public/Star 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/public/Star 1.svg -------------------------------------------------------------------------------- /public/assets/Heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/public/assets/Heart.svg -------------------------------------------------------------------------------- /public/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/public/assets/logo.svg -------------------------------------------------------------------------------- /public/assets/rectangleBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/public/assets/rectangleBackground.svg -------------------------------------------------------------------------------- /public/assets/squerBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/public/assets/squerBackground.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/images/logo-2.0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/public/images/logo-2.0.svg -------------------------------------------------------------------------------- /public/images/people/EladTal14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/public/images/people/EladTal14.jpeg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /schemas/people-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/schemas/people-schema.json -------------------------------------------------------------------------------- /scripts/open-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/scripts/open-browser.js -------------------------------------------------------------------------------- /services/metaData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/services/metaData.ts -------------------------------------------------------------------------------- /services/people.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/services/people.ts -------------------------------------------------------------------------------- /static/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/static/metadata.ts -------------------------------------------------------------------------------- /styles/Home.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/styles/Home.module.scss -------------------------------------------------------------------------------- /styles/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/styles/colors.ts -------------------------------------------------------------------------------- /styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/styles/globals.scss -------------------------------------------------------------------------------- /styles/media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/styles/media.scss -------------------------------------------------------------------------------- /styles/os-rel-design.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/styles/os-rel-design.module.scss -------------------------------------------------------------------------------- /styles/projects.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/utils/canvas.ts -------------------------------------------------------------------------------- /utils/mediaQueries.ts: -------------------------------------------------------------------------------- 1 | export const mobile = '(max-width: 600px)'; 2 | -------------------------------------------------------------------------------- /utils/randomShuffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pull-Request-Community/pull-request-community-website/HEAD/utils/randomShuffle.ts --------------------------------------------------------------------------------