Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
3b84175
update registration api routes
J164 Jun 25, 2025
1596ed1
create custom form components and hooks
J164 Jul 3, 2025
ba38ea0
continue registration form work
J164 Jul 5, 2025
6d0f475
simplify api client and add more registration
J164 Jul 12, 2025
a9883d4
more form components
J164 Jul 15, 2025
f8452e2
Merge branch 'main' of github.com:ReflectionsProjections/rp-web into …
J164 Jul 15, 2025
e1bb820
Style custom form components
J164 Jul 17, 2025
808c99d
Finish adding registration questions
J164 Jul 17, 2025
6631d0e
Work on registration layout
J164 Jul 20, 2025
beaf33b
initial page one layout
J164 Jul 21, 2025
d281add
Merge branch 'main' of github.com:ReflectionsProjections/rp-web into …
J164 Jul 21, 2025
c4984e0
Update form component colors
J164 Jul 21, 2025
c473e50
Careers page of registration and added assets
J164 Jul 26, 2025
b008c08
Registration mobile view
J164 Jul 29, 2025
f8dcbe1
basic mvp
anandani4136 Jul 30, 2025
5e5cf6d
simplify api client and add more registration
J164 Jul 12, 2025
a1a8fa6
Merge branch 'auth-fix' of github.com:ReflectionsProjections/rp-web i…
J164 Aug 1, 2025
7e8e1d5
more robust api error handling
J164 Aug 1, 2025
9c915db
Merge branch 'auth-fix' of github.com:ReflectionsProjections/rp-web i…
J164 Aug 1, 2025
d5ce619
connect registration to backend
J164 Aug 1, 2025
daa9d24
update registration types
J164 Aug 1, 2025
f4caa5f
Update apps/site/src/routes/Register.tsx
anandani4136 Aug 7, 2025
ec6b1fb
Add CONTRIBUTORS
anandani4136 Aug 10, 2025
6b08c6f
Slim down Docker Image
anandani4136 Aug 10, 2025
b95035d
Merge branch 'dockerup' into edleyjacob/rp-82-registration
J164 Aug 12, 2025
4797f00
Merge branch 'main' into edleyjacob/rp-82-registration
J164 Aug 12, 2025
4e596c2
sidestep auth for testing
J164 Aug 12, 2025
4590a18
fix performance issue with other selections
J164 Aug 12, 2025
0783b3b
refactor registration view
J164 Aug 13, 2025
cea4b9e
adjust styles
J164 Aug 13, 2025
f2ed848
more style adjustments
J164 Aug 13, 2025
aa088bc
custom validation messages
J164 Aug 13, 2025
f8efcc6
add puzzlebang and mechmania to validation
J164 Aug 13, 2025
8d0626e
connect registration to api
J164 Aug 15, 2025
a391bef
cleanup accidental changes
J164 Aug 15, 2025
17d1c2a
add README.md to .prettierignore
J164 Aug 15, 2025
c350cf8
fix some small things
J164 Aug 15, 2025
81abbae
add resume upload
J164 Aug 15, 2025
a9bc5e8
fix resume upload
J164 Aug 15, 2025
1f709d2
change font
J164 Aug 15, 2025
eeec4a3
add resume view
J164 Aug 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
**/node_modules
**/.husky
**/.github
**/README.md
LICENSE
.prettierignore
.gitignore
28 changes: 28 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Contributors of Reflections | Projections Web

## Current Team

| Name | Role |
| -------------------------------------------------- | ------------- |
| [Jacob Edley](https://github.com/J164) | 2025 Web Team |
| [Miguel Aenlle](https://github.com/miguelaenlle) | 2025 Web Team |
| [Quinten Schafer](https://github.com/seventhriver) | 2025 Web Team |
| [Vani Ramesh](https://github.com/share-a-byte) | 2025 Web Team |
| [Aryan Bahl](https://github.com/Bahl-Aryan) | 2025 Dev Lead |
| [Ronit Anandani](https://github.com/anandani4136) | 2025 Dev Lead |

## Past Teams

| Name | Role |
| ---------------------------------------------- | ------------- |
| [Jeremy Wu](https://github.com/caupcakes) | 2024 Dev Team |
| [Dev Patel](https://github.com/Patle1234) | 2025 Dev Team |
| [Aydan Pirani](https://github.com/AydanPirani) | 2024 Dev Lead |
| [Divya Koya](https://github.com/divyack2) | 2024 Dev Lead |

## Individual Contributors

| Name | Role |
| ------------------------------------------------------- | ------------- |
| [Timothy Gonzalez](https://github.com/Timothy-Gonzalez) | 2025 Dev Team |
| [Shreenija Reddy Daggavolu](https://github.com/sdagg9) | 2024 Dev Team |
21 changes: 21 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FROM node:18-alpine

# Install system dependencies (only what's absolutely necessary)
RUN apk add \
git \
tini \
bash

WORKDIR /shared

# Copy entrypoint script first and verify it exists
COPY ./entrypoint.sh /entrypoint.sh
RUN ls -la /entrypoint.sh && chmod +x /entrypoint.sh

COPY ./.env /

# Expose ports (Site, Admin, Info, Hype, Sponsor)
EXPOSE 3001 3002 3003 3004 3005

ENTRYPOINT ["tini", "--", "/entrypoint.sh"]

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ To create a new app:
```

2. Update the `package.json` in the new app:

- Replace all instances of `@rp/template` with `@rp/<new-app-name>`.
- Careful! `@rp/template` appears in multiple places in the `package.json`.

Expand Down
2 changes: 1 addition & 1 deletion apps/admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@yudiel/react-qr-scanner": "^2.2.1",
"axios": "*",
"chart.js": "^4.4.9",
"formik": "^2.4.6",
"formik": "*",
"framer-motion": "*",
"lottie-react": "^2.4.1",
"moment": "^2.30.1",
Expand Down
2 changes: 2 additions & 0 deletions apps/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
"@emotion/react": "*",
"@emotion/styled": "*",
"@rp/shared": "*",
"chakra-react-select": "*",
"formik": "*",
"framer-motion": "*",
"react": "*",
"react-dom": "*"
Expand Down
Binary file added apps/site/public/magistral.ttf
Binary file not shown.
9 changes: 9 additions & 0 deletions apps/site/public/registration/background.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions apps/site/public/registration/confirmation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions apps/site/public/registration/page-one-shadow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions apps/site/public/registration/page-one.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
952 changes: 952 additions & 0 deletions apps/site/public/registration/page-two-shadow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
937 changes: 937 additions & 0 deletions apps/site/public/registration/page-two.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading