An error occurred while fetching the assigned milestone of the selected merge_request.
Sprint 3
.gitlab/merge_request_templates
default.md +53 -0
.husky
commit-msg +4 -0
pre-commit +4 -0
.vscode
settings.json +5 -0
nginx
nginx.conf +12 -0
public
.gitkeep +0 -0
src
assets
icons
arrowDownIcon.svg +3 -0
closeIcon.svg +3 -0
configOrangeIcon.svg +3 -0
configWhiteIcon.svg +3 -0
downloadOrangeIcon.svg +3 -0
downloadWhiteIcon.svg +3 -0
fileIcon.svg +3 -0
pencilIcon.svg +3 -0
screenOrangeIcon.svg +3 -0
trashIcon.svg +3 -0
uploadIcon.svg +3 -0
uploadOrangeIcon.svg +3 -0
uploadWhiteIcon.svg +3 -0
userOrangeIcon.svg +3 -0
userWhiteIcon.svg +3 -0
images
ArrowLeft.png +0 -0
ArrowRight.png +0 -0
cardVote.svg +21 -0
coffeeVote.svg +24 -0
noVote.svg +20 -0
poker_table.svg +105 -0
sadOrangeTriider.png +0 -0
trashRed.svg +3 -0
sideMenuIcons
apartmentOrange.svg +3 -0
apartmentWhite.svg +3 -0
caretDownWhite.svg +3 -0
caretUpWhite.svg +3 -0
groupOrange.svg +3 -0
groupWhite.svg +3 -0
laptopOrange.svg +3 -0
laptopWhite.svg +3 -0
registerOrange.svg +3 -0
registerWhite.svg +3 -0
talkOrange.svg +3 -0
talkWhite.svg +3 -0
triiderLogos
logoBlack.svg +16 -0
logoOrange.svg +16 -0
logoTriiderPhraseOrange.png +0 -0
logoTriiderPhraseWhite.png +0 -0
logoTriiderWhite.png +0 -0
logoWhite.svg +9 -0
components
Breadcrumb
Identify
index.tsx +119 -0
Resume
index.tsx +173 -0
index.tsx +49 -0
Button
index.tsx +48 -0
Carousel
Task
index.tsx +52 -0
index.tsx +54 -0
Container
index.tsx +27 -0
FileInput
index.tsx +154 -0
GenericTable
index.tsx +132 -0
Header
index.tsx +36 -0
InputHeader
Index.tsx +21 -0
InputText
Index.tsx +32 -0
Loader
animation.css +29 -0
index.tsx +18 -0
Qrcode
index.tsx +23 -0
Select
index.tsx +72 -0
SideMenu
index.tsx +90 -0
SideMenuItem
index.tsx +33 -0
Table
index.tsx +584 -0
Upload
index.tsx +65 -0
VoteCard
index.tsx +39 -0
VotingTriider
index.tsx +38 -0
contexts
ResumeInfoContext.tsx +87 -0
hooks
useDelete.ts +35 -0
useGet.ts +35 -0
usePost.ts +35 -0
mocks
genericTable.ts +10 -0
resumeInfo.ts +32 -0
pages
Dashboard
Organization
index.tsx +15 -0
Project
index.tsx +15 -0
Sprint
index.tsx +7 -0
Squad
index.tsx +15 -0
User
index.tsx +38 -0
Error
index.tsx +19 -0
Game
index.tsx +469 -0
Home
index.tsx +16 -0
Resume
index.tsx +159 -0
services
firebase.ts +28 -0
firebaseSessions.ts +44 -0
styles
globals.css +3 -0
types
CreateSessionDto.ts +28 -0
InfoBody.ts +4 -0
UsInfo.ts +14 -0
config.ts +11 -0
index.tsx +32 -0
layout.tsx +23 -0
vite-env.d.ts +1 -0
.dockerignore +2 -0
.editorconfig +14 -0
.env +19 -0
.eslintignore +2 -0
.eslintrc.json +25 -0
.gitignore +23 -0
.gitlab-ci.yml +37 -0
.prettierrc +12 -0
Dockerfile +63 -0
LICENSE +21 -0
README.md +48 -0
commitlint.config.cts +3 -0
docker-compose.yaml +10 -0
favicon.ico +0 -0
index.html +13 -0
package-lock.json +8948 -0
package.json +68 -0
postcss.config.js +6 -0
tailwind.config.js +51 -0
tsconfig.json +25 -0
tsconfig.node.json +9 -0
vite.config.ts +17 -0
yarn.lock +4779 -0
.gitlab/merge_request_templates/default.md
0 → 100644
+ 53
- 0
.husky/commit-msg
0 → 100644
+ 4
- 0
.husky/pre-commit
0 → 100644
+ 4
- 0
.vscode/settings.json
0 → 100644
+ 5
- 0
nginx/nginx.conf
0 → 100644
+ 12
- 0