├── .eslintrc.js ├── .github └── pull_request_template.md ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── CONTRIBUTING.md ├── README.md ├── components ├── Buttons │ ├── IconsButton.tsx │ └── signInButton.tsx ├── Cards │ └── ContributorCard.tsx ├── Clipboard │ └── Clipboard.tsx ├── Date │ └── Date.tsx ├── Footer │ └── Footer.tsx ├── HackathonCard │ └── HackathonCard.tsx ├── HackathonDetailPage │ ├── Leaderboard.tsx │ ├── Overview.tsx │ ├── Participants.tsx │ └── index.tsx ├── Header │ └── Header.tsx ├── Headline │ └── EventText.tsx ├── Home │ └── EventHeader.tsx ├── Profile │ ├── EditProfileModal.tsx │ ├── Interests.tsx │ ├── ProfileTabs.tsx │ ├── SkillOptions.ts │ ├── TeamCard.tsx │ └── index.tsx └── Sorry │ └── Sorry.tsx ├── context ├── auth.tsx ├── firebase.ts └── styletron.js ├── lottie └── sad.json ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── contributors.tsx ├── hackathon │ └── [slug] │ │ ├── index.tsx │ │ ├── register.tsx │ │ └── teams │ │ └── [team_id] │ │ ├── index.tsx │ │ └── submit.tsx ├── hackathons.tsx ├── index.tsx ├── profile │ └── [username].tsx └── submission │ └── [id].tsx ├── public ├── backgrounds │ ├── bg1.jpg │ └── bg2.jpg ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest ├── images │ ├── 404.svg │ ├── OG.png │ ├── cops_logo.jpg │ ├── empty_box.png │ ├── home-jumbo.jpg │ ├── icon1.png │ ├── icon2.png │ ├── icon3.png │ ├── mountain.jpg │ ├── no-events.jpeg │ ├── person.jpeg │ ├── profile_cover.jpg │ ├── rocket.svg │ └── submit.svg └── static │ └── fonts │ ├── Big_Shoulders_Display │ └── BigShouldersDisplay-Medium.ttf │ ├── Righteous │ └── Righteous-Regular.ttf │ ├── helvetica │ ├── helvetica-bold.ttf │ ├── helvetica-light.ttf │ ├── helvetica-regular.ttf │ └── helvetica-thin.ttf │ └── madetommy │ ├── mt-bold.ttf │ ├── mt-extrabold.ttf │ ├── mt-light.ttf │ ├── mt-medium.ttf │ ├── mt-regular.ttf │ └── mt-thin.ttf ├── styles ├── font.css ├── misc.css └── style.css ├── tsconfig.json ├── types └── backend.ts ├── util ├── axios.ts └── constants.ts └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/README.md -------------------------------------------------------------------------------- /components/Buttons/IconsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Buttons/IconsButton.tsx -------------------------------------------------------------------------------- /components/Buttons/signInButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Buttons/signInButton.tsx -------------------------------------------------------------------------------- /components/Cards/ContributorCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Cards/ContributorCard.tsx -------------------------------------------------------------------------------- /components/Clipboard/Clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Clipboard/Clipboard.tsx -------------------------------------------------------------------------------- /components/Date/Date.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Date/Date.tsx -------------------------------------------------------------------------------- /components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /components/HackathonCard/HackathonCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/HackathonCard/HackathonCard.tsx -------------------------------------------------------------------------------- /components/HackathonDetailPage/Leaderboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/HackathonDetailPage/Leaderboard.tsx -------------------------------------------------------------------------------- /components/HackathonDetailPage/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/HackathonDetailPage/Overview.tsx -------------------------------------------------------------------------------- /components/HackathonDetailPage/Participants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/HackathonDetailPage/Participants.tsx -------------------------------------------------------------------------------- /components/HackathonDetailPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/HackathonDetailPage/index.tsx -------------------------------------------------------------------------------- /components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Header/Header.tsx -------------------------------------------------------------------------------- /components/Headline/EventText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Headline/EventText.tsx -------------------------------------------------------------------------------- /components/Home/EventHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Home/EventHeader.tsx -------------------------------------------------------------------------------- /components/Profile/EditProfileModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Profile/EditProfileModal.tsx -------------------------------------------------------------------------------- /components/Profile/Interests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Profile/Interests.tsx -------------------------------------------------------------------------------- /components/Profile/ProfileTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Profile/ProfileTabs.tsx -------------------------------------------------------------------------------- /components/Profile/SkillOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Profile/SkillOptions.ts -------------------------------------------------------------------------------- /components/Profile/TeamCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Profile/TeamCard.tsx -------------------------------------------------------------------------------- /components/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Profile/index.tsx -------------------------------------------------------------------------------- /components/Sorry/Sorry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/components/Sorry/Sorry.tsx -------------------------------------------------------------------------------- /context/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/context/auth.tsx -------------------------------------------------------------------------------- /context/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/context/firebase.ts -------------------------------------------------------------------------------- /context/styletron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/context/styletron.js -------------------------------------------------------------------------------- /lottie/sad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/lottie/sad.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/contributors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/pages/contributors.tsx -------------------------------------------------------------------------------- /pages/hackathon/[slug]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/pages/hackathon/[slug]/index.tsx -------------------------------------------------------------------------------- /pages/hackathon/[slug]/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/pages/hackathon/[slug]/register.tsx -------------------------------------------------------------------------------- /pages/hackathon/[slug]/teams/[team_id]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/pages/hackathon/[slug]/teams/[team_id]/index.tsx -------------------------------------------------------------------------------- /pages/hackathon/[slug]/teams/[team_id]/submit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/pages/hackathon/[slug]/teams/[team_id]/submit.tsx -------------------------------------------------------------------------------- /pages/hackathons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/pages/hackathons.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/profile/[username].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/pages/profile/[username].tsx -------------------------------------------------------------------------------- /pages/submission/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/pages/submission/[id].tsx -------------------------------------------------------------------------------- /public/backgrounds/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/backgrounds/bg1.jpg -------------------------------------------------------------------------------- /public/backgrounds/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/backgrounds/bg2.jpg -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/favicon/site.webmanifest -------------------------------------------------------------------------------- /public/images/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/404.svg -------------------------------------------------------------------------------- /public/images/OG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/OG.png -------------------------------------------------------------------------------- /public/images/cops_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/cops_logo.jpg -------------------------------------------------------------------------------- /public/images/empty_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/empty_box.png -------------------------------------------------------------------------------- /public/images/home-jumbo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/home-jumbo.jpg -------------------------------------------------------------------------------- /public/images/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/icon1.png -------------------------------------------------------------------------------- /public/images/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/icon2.png -------------------------------------------------------------------------------- /public/images/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/icon3.png -------------------------------------------------------------------------------- /public/images/mountain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/mountain.jpg -------------------------------------------------------------------------------- /public/images/no-events.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/no-events.jpeg -------------------------------------------------------------------------------- /public/images/person.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/person.jpeg -------------------------------------------------------------------------------- /public/images/profile_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/profile_cover.jpg -------------------------------------------------------------------------------- /public/images/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/rocket.svg -------------------------------------------------------------------------------- /public/images/submit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/images/submit.svg -------------------------------------------------------------------------------- /public/static/fonts/Big_Shoulders_Display/BigShouldersDisplay-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/Big_Shoulders_Display/BigShouldersDisplay-Medium.ttf -------------------------------------------------------------------------------- /public/static/fonts/Righteous/Righteous-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/Righteous/Righteous-Regular.ttf -------------------------------------------------------------------------------- /public/static/fonts/helvetica/helvetica-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/helvetica/helvetica-bold.ttf -------------------------------------------------------------------------------- /public/static/fonts/helvetica/helvetica-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/helvetica/helvetica-light.ttf -------------------------------------------------------------------------------- /public/static/fonts/helvetica/helvetica-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/helvetica/helvetica-regular.ttf -------------------------------------------------------------------------------- /public/static/fonts/helvetica/helvetica-thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/helvetica/helvetica-thin.ttf -------------------------------------------------------------------------------- /public/static/fonts/madetommy/mt-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/madetommy/mt-bold.ttf -------------------------------------------------------------------------------- /public/static/fonts/madetommy/mt-extrabold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/madetommy/mt-extrabold.ttf -------------------------------------------------------------------------------- /public/static/fonts/madetommy/mt-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/madetommy/mt-light.ttf -------------------------------------------------------------------------------- /public/static/fonts/madetommy/mt-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/madetommy/mt-medium.ttf -------------------------------------------------------------------------------- /public/static/fonts/madetommy/mt-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/madetommy/mt-regular.ttf -------------------------------------------------------------------------------- /public/static/fonts/madetommy/mt-thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/public/static/fonts/madetommy/mt-thin.ttf -------------------------------------------------------------------------------- /styles/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/styles/font.css -------------------------------------------------------------------------------- /styles/misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/styles/misc.css -------------------------------------------------------------------------------- /styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/styles/style.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/types/backend.ts -------------------------------------------------------------------------------- /util/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/util/axios.ts -------------------------------------------------------------------------------- /util/constants.ts: -------------------------------------------------------------------------------- 1 | export const API_URL: string = "https://web-production-42be.up.railway.app/" 2 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COPS-IITBHU/hackalog-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------