Skip to content

Commit

Permalink
Add team position links (#84)
Browse files Browse the repository at this point in the history
* team positions redirect

* added redirections for /team and /team/apply
  • Loading branch information
devk03 authored Dec 24, 2023
1 parent e31acbe commit 517fcee
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pages/team/apply.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { NextPage } from "next";
import Redirect from "../../components/Redirect";

const TeamApplication: NextPage = () => (
<Redirect route="https://tally.so/r/3X4VXj" />
);

export default TeamApplication;
8 changes: 8 additions & 0 deletions pages/team/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { NextPage } from "next";
import Redirect from "../../components/Redirect";

const TeamPage: NextPage = () => (
<Redirect route="https://v1team.notion.site/Join-the-V1-Team-45b77563d6bb44a0bd343fc73409112a" />
);

export default TeamPage;

0 comments on commit 517fcee

Please sign in to comment.