Skip to content

Commit a10b3e1

Browse files
committed
Update join page.
1 parent dfc4f7a commit a10b3e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/component/Navbar.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { useNavigate } from "react-router-dom";
33

44
export function Navbar() {
55
const navigate = useNavigate();
6+
const joinFormUrl = "https://forms.gle/Q8E44fxzK2o3uo2m7";
67
const items: MenuProps["items"] = [
78
{
89
key: "about us",
@@ -33,7 +34,7 @@ export function Navbar() {
3334
{
3435
key: "joinus",
3536
label: "加入我們 Join us",
36-
onClick: () => navigate("/Joinus"),
37+
onClick: () => window.open(joinFormUrl, "_blank"),
3738
},
3839
{
3940
key: "alliances",

0 commit comments

Comments
 (0)