mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
import { redirect } from 'next/navigation';
|
|
|
|
export default function Home() {
|
|
redirect('/dashboard');
|
|
|
|
return (
|
|
<main className='w-full h-full min-h-screen flex flex-row justify-center items-center'>
|
|
<h1>LTI ERP</h1>
|
|
</main>
|
|
);
|
|
}
|