Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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 frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"eject": "react-scripts eject"
},
"dependencies": {
"gsap": "^3.13.0",
"motion": "^12.23.22",
"react": "^19.1.1",
"react-dom": "^19.1.1"
Expand Down
56 changes: 56 additions & 0 deletions frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,59 @@ section[id] {
.animate-fade-in {
animation: fadeIn 1s ease-out forwards;
}

@keyframes float {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
}

.animate-float {
animation: float 3s ease-in-out infinite;
}

@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

@keyframes floatAndSpin {
0%, 100% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-10px) rotate(180deg);
}
}

@keyframes floatAndSpinReverse {
0%, 100% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-8px) rotate(-180deg);
}
}

.animate-spin-slow {
animation: spin 8s linear infinite;
}

.animate-spin-reverse {
animation: spin 10s linear infinite reverse;
}

.animate-float-spin {
animation: floatAndSpin 6s ease-in-out infinite;
}

.animate-float-spin-reverse {
animation: floatAndSpinReverse 7s ease-in-out infinite;
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/ui/common/assets/faq/blackstars.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/ui/common/assets/faq/cost_a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/ui/common/assets/faq/cost_q.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/ui/common/assets/faq/cover_back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/ui/common/assets/faq/cover_front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/ui/common/assets/faq/hack_a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/ui/common/assets/faq/hack_q.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/ui/common/assets/faq/letters/a.png
Binary file added frontend/src/ui/common/assets/faq/letters/c.png
Binary file added frontend/src/ui/common/assets/faq/letters/d.png
Binary file added frontend/src/ui/common/assets/faq/letters/e.png
Binary file added frontend/src/ui/common/assets/faq/letters/g.png
Binary file added frontend/src/ui/common/assets/faq/letters/h.png
Binary file added frontend/src/ui/common/assets/faq/letters/i.png
Binary file added frontend/src/ui/common/assets/faq/letters/k.png
Binary file added frontend/src/ui/common/assets/faq/letters/r.png
Binary file added frontend/src/ui/common/assets/faq/letters/u.png
Binary file added frontend/src/ui/common/assets/faq/lightbulb.png
Binary file added frontend/src/ui/common/assets/faq/page1_stars.png
Binary file added frontend/src/ui/common/assets/faq/stars1.png
Binary file added frontend/src/ui/common/assets/faq/stars2.png
Binary file added frontend/src/ui/common/assets/faq/water.png
Loading