diff --git a/src/app/meeting/page.tsx b/src/app/meeting/page.tsx new file mode 100644 index 0000000..37d4484 --- /dev/null +++ b/src/app/meeting/page.tsx @@ -0,0 +1,12 @@ +"use client"; + +import { redirect } from "next/navigation"; + +const SCHEDULING_URL = "https://cal.com/elias-almqvist-d33wxo"; + +// Redirect to the external URL +const Page = () => { + redirect(SCHEDULING_URL); +}; + +export default Page;