mirror of
https://git.moonleay.net/Websites/liljudd-website.git
synced 2025-07-23 17:25:08 +02:00
fix: fixed ImageSection being broken on mobile feat: added proper imprint feat: added name to privacy-policy feat: bump version fix: fixed footer not rendering correct on some mobile devices chore: bump version feat: imported html from Config repo Updated packages Migration from astro to solid-start Add database and auth Add discord rest testing Database schema rework API meeting progress Fix styles
22 lines
579 B
TypeScript
22 lines
579 B
TypeScript
import { Title } from "@solidjs/meta";
|
||
import { HttpStatusCode } from "@solidjs/start";
|
||
import "../styles/pages/index.scss";
|
||
|
||
export default function NotFound() {
|
||
return (
|
||
<>
|
||
<Title>Not Found</Title>
|
||
<HttpStatusCode code={404} />
|
||
<section class="section">
|
||
<h1>404 - Whoops, ink spill!</h1>
|
||
<h5>li'l Judd couldn't find this turf.</h5>
|
||
<div>
|
||
<p class="p1">
|
||
Head back to <a href="/">base</a> and splat into action from there!
|
||
🦑🕹️
|
||
</p>
|
||
</div>
|
||
</section>
|
||
</>
|
||
);
|
||
}
|