diff options
author | 2022-03-10 10:36:11 -0500 | |
---|---|---|
committer | 2022-03-10 09:36:11 -0600 | |
commit | 52d812b31ae18327029f22a6c92ae31c8318bb81 (patch) | |
tree | ccfedc24e055cd445dc4f6b0b4452e08836ff726 /examples/portfolio-svelte/src | |
parent | 567008cfc1c9780853e2782c879703931ca66c3b (diff) | |
download | astro-52d812b31ae18327029f22a6c92ae31c8318bb81.tar.gz astro-52d812b31ae18327029f22a6c92ae31c8318bb81.tar.zst astro-52d812b31ae18327029f22a6c92ae31c8318bb81.zip |
fix component usage in portfolio-svelte 404 page (#2549)
Diffstat (limited to 'examples/portfolio-svelte/src')
-rw-r--r-- | examples/portfolio-svelte/src/pages/404.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/portfolio-svelte/src/pages/404.astro b/examples/portfolio-svelte/src/pages/404.astro index b379c181b..51faab6c0 100644 --- a/examples/portfolio-svelte/src/pages/404.astro +++ b/examples/portfolio-svelte/src/pages/404.astro @@ -9,11 +9,11 @@ import Nav from '../components/Nav.svelte'; <MainHead title="Not Found" /> </head> <body> - <nav /> + <Nav /> <div class="wrapper mt4 mb4"> <h1>Page Not Found</h1> <p>Not found</p> </div> - <footer /> + <Footer /> </body> </html> |