feat: Scheduling link

main
Elias Almqvist 5 months ago
parent c7a5af2f9e
commit 52283cf73b
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 12
      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;
Loading…
Cancel
Save