pleshevski.ru/src/views/e404.mts

13 lines
320 B
TypeScript
Raw Normal View History

2022-03-16 22:17:07 +03:00
import { PageLayout } from "../components/page_layout.mjs";
2022-03-20 23:21:38 +03:00
import { AnyNode, Ea } from "ren";
import { div } from "../utils.mjs";
2022-03-16 22:17:07 +03:00
2022-03-18 22:59:27 +03:00
export function E404(): AnyNode {
2022-03-20 23:21:38 +03:00
return PageLayout(
div(
{ class: "content-width" },
Ea("h3", { class: "font-h3" }, "Страница не найдена")
)
);
2022-03-16 22:17:07 +03:00
}