mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 20:19:05 +01:00
11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
import Section from "../components/Section";
|
|
import "./_404.css";
|
|
|
|
export function NotFound() {
|
|
return (
|
|
<Section title="404: Not Found" className="section-404">
|
|
The page you were looking for could not be found. Maybe it was deleted or the URL is incorrect.
|
|
</Section>
|
|
);
|
|
}
|