Default to account settings

This commit is contained in:
Lea 2024-01-17 22:11:13 +01:00
parent 92eed41ace
commit 5be5e328ae
Signed by: Lea
GPG key ID: 1BAFFE8347019C42

View file

@ -1,11 +1,7 @@
"use client";
import { Heading } from '@radix-ui/themes';
import { redirect } from 'next/navigation';
export default function Home() {
return (
<>
<Heading size="9">Welcome back.</Heading>
</>
);
return redirect("/self-service");
}