10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<meta httpEquiv="refresh" content="0; url=dashboard/" />
|
|
<main className="flex min-h-svh items-center justify-center bg-background px-6 py-16">
|
|
</main>
|
|
</>
|
|
)
|
|
}
|