Skip to content

Commit

Permalink
feat: Add zoom/meet permanent redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
rudyorre committed Feb 6, 2024
1 parent 7b48419 commit 4e92c84
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/app/meet/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { permanentRedirect } from 'next/navigation'

export default function ResumePage() {
permanentRedirect('https://meet.google.com/her-pqgs-ovd');
return <>
Redirecting to Google Meet...
</>;
}
4 changes: 3 additions & 1 deletion src/app/resume/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ import { permanentRedirect } from 'next/navigation'

export default function ResumePage() {
permanentRedirect('https://drive.google.com/file/d/1p8nSZYy8jgPrRdBCm4CZ3DQBhIJKudbN/view?usp=sharing');
return <></>;
return <>
Redirecting to Resume...
</>;
}
8 changes: 8 additions & 0 deletions src/app/zoom/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { permanentRedirect } from 'next/navigation'

export default function ResumePage() {
permanentRedirect('https://us05web.zoom.us/j/8749675790?pwd=K2w4aFJ4eHBKQzV3d3pUcXBjT2dHUT09');
return <>
Redirecting to Zoom...
</>;
}

0 comments on commit 4e92c84

Please sign in to comment.