Skip to content

Commit 3cb908f

Browse files
committed
feat: update landing page, fix remove bot test when update flow, add label edge
1 parent 4f49ea3 commit 3cb908f

32 files changed

+709
-30
lines changed

client/package-lock.json

Lines changed: 70 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"format": "prettier --write ./src"
1212
},
1313
"dependencies": {
14+
"@gsap/react": "^2.1.0",
1415
"@hookform/resolvers": "^3.3.4",
1516
"@mdx-js/react": "^3.0.1",
1617
"@mdx-js/rollup": "^3.0.1",
@@ -69,11 +70,13 @@
6970
"embla-carousel-react": "^8.0.0-rc23",
7071
"fast-glob": "^3.3.2",
7172
"firebase": "^10.8.0",
73+
"gsap": "^3.12.5",
7274
"i18next": "^23.9.0",
7375
"i18next-browser-languagedetector": "^7.2.0",
7476
"i18next-chained-backend": "^4.6.2",
7577
"i18next-http-backend": "^2.4.3",
7678
"i18next-localstorage-backend": "^4.2.0",
79+
"locomotive-scroll": "^4.1.4",
7780
"lodash": "^4.17.21",
7881
"lucide-react": "^0.335.0",
7982
"million": "^3.0.6",
@@ -101,6 +104,7 @@
101104
"@tailwindcss/typography": "^0.5.10",
102105
"@tanstack/router-vite-plugin": "^1.16.5",
103106
"@types/crypto-js": "^4.2.2",
107+
"@types/locomotive-scroll": "^4.1.3",
104108
"@types/lodash": "^4.17.0",
105109
"@types/mdx": "^2.0.11",
106110
"@types/node": "^20.11.24",

client/src/apis/auth.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ENDPOINTS } from '@/constants'
22
import http_client from '@/lib/http-client'
33
import { TLogin } from '@/lib/schema/login'
4-
import { TForgotPass } from '@/lib/schema/mail'
4+
import { TEmail } from '@/lib/schema/mail'
55
import { TRegister } from '@/lib/schema/register'
66
import { TSetPass } from '@/lib/schema/set-pass'
77
import { TBaseResponse, TToken } from '@/types/share'
@@ -17,7 +17,7 @@ class Auth {
1717
return http_client.post(ENDPOINTS.AUTH.REGISTER, data)
1818
}
1919

20-
forgotPassword(data: TForgotPass): Promise<TBaseResponse<null>> {
20+
forgotPassword(data: TEmail): Promise<TBaseResponse<null>> {
2121
return http_client.post(ENDPOINTS.AUTH.FORGOT_PASSWORD, data)
2222
}
2323

client/src/app.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import { Outlet } from 'react-router-dom'
22

3-
import { ReactQueryDevtools } from '@tanstack/react-query-devtools'
4-
53
const App = () => {
64
return (
75
<div>
8-
<ReactQueryDevtools />
6+
{/* <ReactQueryDevtools buttonPosition='top-right' /> */}
97
<Outlet />
108
</div>
119
)

client/src/assets/chatbox-hero.png

23 KB
Loading

client/src/assets/dots.webp

49.7 KB
Loading

client/src/assets/earth.svg

Lines changed: 4 additions & 0 deletions
Loading

client/src/assets/flows.png

126 KB
Loading

client/src/assets/gmail.svg

Lines changed: 7 additions & 0 deletions
Loading

client/src/assets/google.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)