diff --git a/src/routes/*404.tsx b/src/routes/*404.tsx new file mode 100644 index 00000000..49f2db57 --- /dev/null +++ b/src/routes/*404.tsx @@ -0,0 +1,17 @@ +import { HttpStatusCode } from "@solidjs/start" +import { FourOuFourView } from '../components/Views/FourOuFour' +import { PageLayout } from '../components/_shared/PageLayout' +import { useLocalize } from '../context/localize' + +export const FourOuFourPage = () => { + const { t } = useLocalize() + + return ( + + + + + ) +} + +export const Page = FourOuFourPage diff --git a/src/routes/author/(all).tsx b/src/routes/author/(all-authors).tsx similarity index 100% rename from src/routes/author/(all).tsx rename to src/routes/author/(all-authors).tsx diff --git a/src/routes/topic/(all).tsx b/src/routes/topic/(all-topics).tsx similarity index 100% rename from src/routes/topic/(all).tsx rename to src/routes/topic/(all-topics).tsx diff --git a/src/routes/topic/[...slug].tsx b/src/routes/topic/[slug].tsx similarity index 100% rename from src/routes/topic/[...slug].tsx rename to src/routes/topic/[slug].tsx