diff options
Diffstat (limited to 'examples/portfolio-svelte/src/pages/404.astro')
-rw-r--r-- | examples/portfolio-svelte/src/pages/404.astro | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/portfolio-svelte/src/pages/404.astro b/examples/portfolio-svelte/src/pages/404.astro deleted file mode 100644 index 51faab6c0..000000000 --- a/examples/portfolio-svelte/src/pages/404.astro +++ /dev/null @@ -1,19 +0,0 @@ ---- -import MainHead from '../components/MainHead.astro'; -import Footer from '../components/Footer.svelte'; -import Nav from '../components/Nav.svelte'; ---- - -<html lang="en"> - <head> - <MainHead title="Not Found" /> - </head> - <body> - <Nav /> - <div class="wrapper mt4 mb4"> - <h1>Page Not Found</h1> - <p>Not found</p> - </div> - <Footer /> - </body> -</html> |