10 lines
154 B
TypeScript
10 lines
154 B
TypeScript
import { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'IMPHNEN - Signin',
|
|
};
|
|
|
|
export default function Page() {
|
|
return <></>;
|
|
}
|