├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── env.example ├── package.json ├── postcss.config.js ├── public ├── _redirects ├── android-icon-144x144.png ├── android-icon-192x192.png ├── android-icon-36x36.png ├── android-icon-48x48.png ├── android-icon-72x72.png ├── android-icon-96x96.png ├── apple-icon-114x114.png ├── apple-icon-120x120.png ├── apple-icon-144x144.png ├── apple-icon-152x152.png ├── apple-icon-180x180.png ├── apple-icon-57x57.png ├── apple-icon-60x60.png ├── apple-icon-72x72.png ├── apple-icon-76x76.png ├── apple-icon-precomposed.png ├── apple-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── fonts │ ├── inter │ │ ├── Inter-Black.woff │ │ ├── Inter-Black.woff2 │ │ ├── Inter-BlackItalic.woff │ │ ├── Inter-BlackItalic.woff2 │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-BoldItalic.woff │ │ ├── Inter-BoldItalic.woff2 │ │ ├── Inter-ExtraBold.woff │ │ ├── Inter-ExtraBold.woff2 │ │ ├── Inter-ExtraBoldItalic.woff │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ ├── Inter-ExtraLight.woff │ │ ├── Inter-ExtraLight.woff2 │ │ ├── Inter-ExtraLightItalic.woff │ │ ├── Inter-ExtraLightItalic.woff2 │ │ ├── Inter-Italic.woff │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Light.woff │ │ ├── Inter-Light.woff2 │ │ ├── Inter-LightItalic.woff │ │ ├── Inter-LightItalic.woff2 │ │ ├── Inter-Medium.woff │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-MediumItalic.woff │ │ ├── Inter-MediumItalic.woff2 │ │ ├── Inter-Regular.woff │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-SemiBoldItalic.woff │ │ ├── Inter-SemiBoldItalic.woff2 │ │ ├── Inter-Thin.woff │ │ ├── Inter-Thin.woff2 │ │ ├── Inter-ThinItalic.woff │ │ ├── Inter-ThinItalic.woff2 │ │ ├── Inter-italic.var.woff2 │ │ ├── Inter-roman.var.woff2 │ │ ├── Inter.var.woff2 │ │ └── inter.css │ └── jakata │ │ ├── PlusJakartaText-Bold.otf │ │ ├── PlusJakartaText-Bold.ttf │ │ ├── PlusJakartaText-BoldItalic.otf │ │ ├── PlusJakartaText-BoldItalic.ttf │ │ ├── PlusJakartaText-Italic.otf │ │ ├── PlusJakartaText-Italic.ttf │ │ ├── PlusJakartaText-Light.otf │ │ ├── PlusJakartaText-Light.ttf │ │ ├── PlusJakartaText-LightItalic.otf │ │ ├── PlusJakartaText-LightItalic.ttf │ │ ├── PlusJakartaText-Regular.otf │ │ └── PlusJakartaText-Regular.ttf ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── ms-icon-144x144.png ├── ms-icon-150x150.png ├── ms-icon-310x310.png ├── ms-icon-70x70.png └── robots.txt ├── src ├── App.js ├── App.test.js ├── Components │ ├── Activity │ │ └── index.js │ ├── ActivityV3 │ │ └── index.js │ ├── AllIssues │ │ └── index.js │ ├── BadgesList │ │ └── index.js │ ├── Card │ │ └── index.js │ ├── CloneStep │ │ └── index.js │ ├── ContributionDetails │ │ └── index.js │ ├── ContributionsLists │ │ └── index.js │ ├── ContributorsListModel │ │ └── index.js │ ├── CreateNewContributionModel │ │ └── index.js │ ├── Error │ │ └── index.js │ ├── FPRIssueList │ │ └── index.js │ ├── FeedsList │ │ ├── FeedContainer │ │ │ ├── FeedLayout.js │ │ │ ├── MergePRFeed.js │ │ │ ├── NewJoinFeed.js │ │ │ └── PickIssue.js │ │ └── index.js │ ├── ForkStep │ │ └── index.js │ ├── Issue │ │ └── index.js │ ├── IssueBlock │ │ └── index.js │ ├── IssueList │ │ └── index.js │ ├── IssueListWrapper │ │ └── index.js │ ├── IssueV3 │ │ └── index.js │ ├── Layout │ │ └── index.js │ ├── Lesson │ │ └── index.js │ ├── LessonV3 │ │ └── index.js │ ├── Model │ │ ├── index.js │ │ └── style.css │ ├── NewSessionModel │ │ └── index.js │ ├── PRBlock │ │ └── index.js │ ├── PRBlockV3 │ │ └── index.js │ ├── PrimaryButton │ │ └── index.js │ ├── ProfileAvatarHalf │ │ └── index.js │ ├── ProjectMenuSection │ │ └── index.js │ ├── PullRequestList │ │ └── index.js │ ├── RelatedProjects │ │ └── index.js │ ├── RepoBlock │ │ └── index.js │ ├── SVG │ │ └── Tick.js │ ├── ScorePointer │ │ └── index.js │ ├── SearchProjectModel │ │ └── index.js │ ├── SessionCard │ │ └── index.js │ ├── SkeletonLoading │ │ └── index.js │ ├── Step │ │ └── index.js │ ├── StepV3 │ │ └── index.js │ ├── Tick.js │ ├── Tooltip │ │ └── index.js │ ├── V3ProjectCards │ │ └── index.js │ └── YourSessions │ │ └── index.js ├── Pages │ ├── 404 │ │ └── index.js │ ├── Dashboard │ │ └── index.js │ ├── Login │ │ └── index.js │ ├── Logout │ │ └── index.js │ ├── Projects │ │ └── index.js │ ├── SingleProject │ │ └── index.js │ └── SingleProjectV3 │ │ └── index.js ├── V3Pages │ ├── AllProjects │ │ └── index.js │ ├── Dashboard │ │ └── index.js │ ├── Invite │ │ └── index.js │ └── Profile │ │ └── index.js ├── app.css ├── assets │ ├── 63965.png │ ├── fancy-plants.png │ ├── leapcode--open--noslash.png │ ├── leapcode-new-logo.svg │ └── svgs │ │ ├── github.svg │ │ └── tick.svg ├── basic.css ├── config │ └── firebase.js ├── constants.js ├── index.css ├── index.js ├── logo.svg ├── providers │ ├── AuthProvider.js │ ├── PrivateRoute.js │ └── UserProvider.js ├── serviceWorker.js ├── setupTests.js └── styles.css ├── tailwind.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/SECURITY.md -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/env.example -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/android-icon-144x144.png -------------------------------------------------------------------------------- /public/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/android-icon-192x192.png -------------------------------------------------------------------------------- /public/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/android-icon-36x36.png -------------------------------------------------------------------------------- /public/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/android-icon-48x48.png -------------------------------------------------------------------------------- /public/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/android-icon-72x72.png -------------------------------------------------------------------------------- /public/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/android-icon-96x96.png -------------------------------------------------------------------------------- /public/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/apple-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Black.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Bold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Italic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Light.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-LightItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Medium.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Regular.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Thin.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/Inter.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/inter/inter.css -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-Bold.otf -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-BoldItalic.otf -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-BoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-Italic.otf -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-Italic.ttf -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-Light.otf -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-Light.ttf -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-LightItalic.otf -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-LightItalic.ttf -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-Regular.otf -------------------------------------------------------------------------------- /public/fonts/jakata/PlusJakartaText-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/fonts/jakata/PlusJakartaText-Regular.ttf -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Components/Activity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/Activity/index.js -------------------------------------------------------------------------------- /src/Components/ActivityV3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/ActivityV3/index.js -------------------------------------------------------------------------------- /src/Components/AllIssues/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/AllIssues/index.js -------------------------------------------------------------------------------- /src/Components/BadgesList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/BadgesList/index.js -------------------------------------------------------------------------------- /src/Components/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/Card/index.js -------------------------------------------------------------------------------- /src/Components/CloneStep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/CloneStep/index.js -------------------------------------------------------------------------------- /src/Components/ContributionDetails/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/ContributionDetails/index.js -------------------------------------------------------------------------------- /src/Components/ContributionsLists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/ContributionsLists/index.js -------------------------------------------------------------------------------- /src/Components/ContributorsListModel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/ContributorsListModel/index.js -------------------------------------------------------------------------------- /src/Components/CreateNewContributionModel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/CreateNewContributionModel/index.js -------------------------------------------------------------------------------- /src/Components/Error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/Error/index.js -------------------------------------------------------------------------------- /src/Components/FPRIssueList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/FPRIssueList/index.js -------------------------------------------------------------------------------- /src/Components/FeedsList/FeedContainer/FeedLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/FeedsList/FeedContainer/FeedLayout.js -------------------------------------------------------------------------------- /src/Components/FeedsList/FeedContainer/MergePRFeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/FeedsList/FeedContainer/MergePRFeed.js -------------------------------------------------------------------------------- /src/Components/FeedsList/FeedContainer/NewJoinFeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/FeedsList/FeedContainer/NewJoinFeed.js -------------------------------------------------------------------------------- /src/Components/FeedsList/FeedContainer/PickIssue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/FeedsList/FeedContainer/PickIssue.js -------------------------------------------------------------------------------- /src/Components/FeedsList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/FeedsList/index.js -------------------------------------------------------------------------------- /src/Components/ForkStep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/ForkStep/index.js -------------------------------------------------------------------------------- /src/Components/Issue/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/Issue/index.js -------------------------------------------------------------------------------- /src/Components/IssueBlock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/IssueBlock/index.js -------------------------------------------------------------------------------- /src/Components/IssueList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/IssueList/index.js -------------------------------------------------------------------------------- /src/Components/IssueListWrapper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/IssueListWrapper/index.js -------------------------------------------------------------------------------- /src/Components/IssueV3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/IssueV3/index.js -------------------------------------------------------------------------------- /src/Components/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/Layout/index.js -------------------------------------------------------------------------------- /src/Components/Lesson/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/Lesson/index.js -------------------------------------------------------------------------------- /src/Components/LessonV3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/LessonV3/index.js -------------------------------------------------------------------------------- /src/Components/Model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/Model/index.js -------------------------------------------------------------------------------- /src/Components/Model/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/Model/style.css -------------------------------------------------------------------------------- /src/Components/NewSessionModel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/NewSessionModel/index.js -------------------------------------------------------------------------------- /src/Components/PRBlock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/PRBlock/index.js -------------------------------------------------------------------------------- /src/Components/PRBlockV3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/PRBlockV3/index.js -------------------------------------------------------------------------------- /src/Components/PrimaryButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/PrimaryButton/index.js -------------------------------------------------------------------------------- /src/Components/ProfileAvatarHalf/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/ProfileAvatarHalf/index.js -------------------------------------------------------------------------------- /src/Components/ProjectMenuSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/ProjectMenuSection/index.js -------------------------------------------------------------------------------- /src/Components/PullRequestList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/PullRequestList/index.js -------------------------------------------------------------------------------- /src/Components/RelatedProjects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/RelatedProjects/index.js -------------------------------------------------------------------------------- /src/Components/RepoBlock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/RepoBlock/index.js -------------------------------------------------------------------------------- /src/Components/SVG/Tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/SVG/Tick.js -------------------------------------------------------------------------------- /src/Components/ScorePointer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/ScorePointer/index.js -------------------------------------------------------------------------------- /src/Components/SearchProjectModel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/SearchProjectModel/index.js -------------------------------------------------------------------------------- /src/Components/SessionCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/SessionCard/index.js -------------------------------------------------------------------------------- /src/Components/SkeletonLoading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/SkeletonLoading/index.js -------------------------------------------------------------------------------- /src/Components/Step/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/Step/index.js -------------------------------------------------------------------------------- /src/Components/StepV3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/StepV3/index.js -------------------------------------------------------------------------------- /src/Components/Tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/Tick.js -------------------------------------------------------------------------------- /src/Components/Tooltip/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/Tooltip/index.js -------------------------------------------------------------------------------- /src/Components/V3ProjectCards/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/V3ProjectCards/index.js -------------------------------------------------------------------------------- /src/Components/YourSessions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Components/YourSessions/index.js -------------------------------------------------------------------------------- /src/Pages/404/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Pages/404/index.js -------------------------------------------------------------------------------- /src/Pages/Dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Pages/Dashboard/index.js -------------------------------------------------------------------------------- /src/Pages/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Pages/Login/index.js -------------------------------------------------------------------------------- /src/Pages/Logout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Pages/Logout/index.js -------------------------------------------------------------------------------- /src/Pages/Projects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Pages/Projects/index.js -------------------------------------------------------------------------------- /src/Pages/SingleProject/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Pages/SingleProject/index.js -------------------------------------------------------------------------------- /src/Pages/SingleProjectV3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/Pages/SingleProjectV3/index.js -------------------------------------------------------------------------------- /src/V3Pages/AllProjects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/V3Pages/AllProjects/index.js -------------------------------------------------------------------------------- /src/V3Pages/Dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/V3Pages/Dashboard/index.js -------------------------------------------------------------------------------- /src/V3Pages/Invite/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/V3Pages/Invite/index.js -------------------------------------------------------------------------------- /src/V3Pages/Profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/V3Pages/Profile/index.js -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/app.css -------------------------------------------------------------------------------- /src/assets/63965.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/assets/63965.png -------------------------------------------------------------------------------- /src/assets/fancy-plants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/assets/fancy-plants.png -------------------------------------------------------------------------------- /src/assets/leapcode--open--noslash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/assets/leapcode--open--noslash.png -------------------------------------------------------------------------------- /src/assets/leapcode-new-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/assets/leapcode-new-logo.svg -------------------------------------------------------------------------------- /src/assets/svgs/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/assets/svgs/github.svg -------------------------------------------------------------------------------- /src/assets/svgs/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/assets/svgs/tick.svg -------------------------------------------------------------------------------- /src/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/basic.css -------------------------------------------------------------------------------- /src/config/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/config/firebase.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/providers/AuthProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/providers/AuthProvider.js -------------------------------------------------------------------------------- /src/providers/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/providers/PrivateRoute.js -------------------------------------------------------------------------------- /src/providers/UserProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/providers/UserProvider.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/src/styles.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leapcode-Open/leapcode-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------