forked from github/plane
26ba4d71c3
* fix: order by last updated * fix: cycles empty space alignment, chore: new meta tags * chore: update meta tags
17 lines
332 B
TypeScript
17 lines
332 B
TypeScript
import React from "react";
|
|
|
|
// layouts
|
|
import DefaultLayout from "layouts/default-layout";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
|
|
const ErrorPage: NextPage = () => (
|
|
<DefaultLayout>
|
|
<div className="h-full w-full">
|
|
<h2 className="text-3xl">Error!</h2>
|
|
</div>
|
|
</DefaultLayout>
|
|
);
|
|
|
|
export default ErrorPage;
|