Skip to content

Commit

Permalink
Merge pull request #26 from snowcamp/redirect-scheduling
Browse files Browse the repository at this point in the history
feat(scheduling): create a route to redirect on our next program pages
  • Loading branch information
barmic authored Nov 12, 2024
2 parents 51cb92b + 3c023ab commit 67a87c7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pages/scheduling.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import type { APIRoute } from 'astro';

export const GET: APIRoute = ({ redirect }) => {
return redirect('https://snowcamp2024.sched.com/', 307);
}

0 comments on commit 67a87c7

Please sign in to comment.