这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
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
670 changes: 667 additions & 3 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@
"lint": "next lint"
},
"dependencies": {
"@react-three/drei": "^10.0.4",
"@react-three/fiber": "^9.1.0",
"framer-motion": "^12.5.0",
"lucide-react": "^0.479.0",
"next": "15.2.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-scrollbar": "^3.1.0"
"react-intersection-observer": "^9.16.0",
"tailwind-scrollbar": "^3.1.0",
"three": "^0.174.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
Expand Down
Binary file added public/images/how-it-works/employer1.avif
Binary file not shown.
Binary file added public/images/how-it-works/employer2.avif
Binary file not shown.
Binary file added public/images/how-it-works/employer3.avif
Binary file not shown.
Binary file added public/images/how-it-works/student1.avif
Binary file not shown.
Binary file added public/images/how-it-works/student2.avif
Binary file not shown.
Binary file added public/images/how-it-works/student3.avif
Binary file not shown.
Binary file added public/images/shapes/confetti.webp
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 public/images/shapes/cute-shape.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 public/images/shapes/shapes.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 public/images/shapes/shapes2.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 public/images/shapes/square.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 public/images/shapes/star.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 public/images/sti/teacher1.jpg
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 public/images/sti/teacher2.jpg
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 public/images/sti/teacher3.jpg
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 public/images/sti/teacher4.jpg
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 public/images/sti/teacher5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 27 additions & 6 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,32 @@
@tailwind components;
@tailwind utilities;

.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
::-webkit-scrollbar-track {
background-color: transparent;
}

::-webkit-scrollbar {
width: 0px;
}

::-webkit-scrollbar-thumb {
background-color: rgb(207, 207, 207);
border-radius: 4px;
}



@keyframes moveBackground {
0% { background-position: 0% 50%; }
25% { background-position: 30% 70%; }
50% { background-position: 70% 30%; }
75% { background-position: 50% 80%; }
100% { background-position: 0% 50%; }
}

.bg-animate {
background-size: 300% 300%;
animation: moveBackground 10s infinite ease-in-out;
}


Loading