1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2025-04-01 05:10:43 +00:00
triennale-appunti-steffo/src/routes/Error404.js

19 lines
580 B
JavaScript

import React from "react";
import {Paragraph, Color} from "bluelib/lib/components";
import TitleBox from "../components/TitleBox";
import useSubtitle from "../hooks/useSubtitle";
export default function Error404() {
useSubtitle(<Color value={"red"}>Errore 404</Color>);
return (
<article>
<TitleBox title={<Color value={"red"}>Pagina non trovata</Color>}>
<Paragraph>
Mi spiace, ma la pagina che hai richiesto non sembra esistere :(
</Paragraph>
</TitleBox>
</article>
)
}