mirror of
https://github.com/SkalaraAI/beta.git
synced 2025-04-09 15:00:20 -04:00
8 lines
146 B
TypeScript
8 lines
146 B
TypeScript
export default function NotFound() {
|
|
return (
|
|
<div className="flex h-screen">
|
|
<h1 className="m-auto">Not Found</h1>
|
|
</div>
|
|
);
|
|
}
|