17 lines
427 B
Text
17 lines
427 B
Text
---
|
|
import App from '../layouts/App.astro'
|
|
import Library from '../components/Library.astro'
|
|
import Footer from '../components/Footer.astro'
|
|
import AddressBar from '../components/AddressBar.astro'
|
|
|
|
export const prerender = false
|
|
---
|
|
|
|
<App article={null}>
|
|
<AddressBar url="" />
|
|
<div slot="post" id="router-outlet">
|
|
<h1>404: Not Found</h1>
|
|
</div>
|
|
<Library slot="library" skipSave />
|
|
<Footer slot="footer" />
|
|
</App>
|