24 lines
533 B
TypeScript
24 lines
533 B
TypeScript
import React from 'react';
|
|
|
|
function NotFoundPage() {
|
|
return (
|
|
<div
|
|
className="inset-0 flex items-center justify-center absolute"
|
|
style={{
|
|
height: 'calc(100vh - 50px)',
|
|
// zIndex: '999',
|
|
}}
|
|
>
|
|
<div className="flex flex-col items-center">
|
|
<div className="text-2xl -mt-8">
|
|
Session not found.
|
|
</div>
|
|
<div className="text-sm">
|
|
Please check your data retention policy.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default NotFoundPage;
|