mirror of https://github.com/almqv/wych.dev
parent
1d82cb58ff
commit
d89a889cc7
@ -1,12 +1,25 @@ |
|||||||
"use client"; |
import Link from "next/link"; |
||||||
|
|
||||||
import { redirect } from "next/navigation"; |
import { redirect } from "next/navigation"; |
||||||
|
|
||||||
const SCHEDULING_URL = "https://cal.com/elias-almqvist-d33wxo"; |
const SCHEDULING_URL = "https://cal.com/elias-almqvist-d33wxo"; |
||||||
|
|
||||||
|
export const metadata = { |
||||||
|
title: "Schedule a meeting with Elias", |
||||||
|
description: "Schedule a meeting with Elias Almqvist", |
||||||
|
}; |
||||||
|
|
||||||
// Redirect to the external URL
|
// Redirect to the external URL
|
||||||
const Page = () => { |
const Page = () => { |
||||||
redirect(SCHEDULING_URL); |
redirect(SCHEDULING_URL); |
||||||
|
|
||||||
|
return ( |
||||||
|
<div className="h-full flex flex-col justify-center items-center space-y-2"> |
||||||
|
<span className="animate-pulse text-2xl font-mono"> |
||||||
|
Redirecting to the scheduling page... |
||||||
|
</span> |
||||||
|
<Link href={SCHEDULING_URL}>Click here if you are not redirected</Link> |
||||||
|
</div> |
||||||
|
); |
||||||
}; |
}; |
||||||
|
|
||||||
export default Page; |
export default Page; |
||||||
|
Loading…
Reference in new issue