diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/portfolio/public/global.scss (renamed from examples/portfolio/public/app.scss) | 0 | ||||
-rw-r--r-- | examples/portfolio/src/pages/404.astro | 8 |
2 files changed, 5 insertions, 3 deletions
diff --git a/examples/portfolio/public/app.scss b/examples/portfolio/public/global.scss index 3cac56a42..3cac56a42 100644 --- a/examples/portfolio/public/app.scss +++ b/examples/portfolio/public/global.scss diff --git a/examples/portfolio/src/pages/404.astro b/examples/portfolio/src/pages/404.astro index bcf9ff668..6929c61e9 100644 --- a/examples/portfolio/src/pages/404.astro +++ b/examples/portfolio/src/pages/404.astro @@ -1,5 +1,5 @@ --- -import NotFound from '../components/NotFound.astro'; +import MainHead from '../components/MainHead.astro'; import Footer from '../components/Footer/index.jsx'; import Nav from '../components/Nav/index.jsx'; --- @@ -10,8 +10,10 @@ import Nav from '../components/Nav/index.jsx'; </head> <body> <Nav /> - <h1>Page Not Found</h1> - <p>Not found</p> + <div class="wrapper mt4 mb4"> + <h1>Page Not Found</h1> + <p>Not found</p> + </div> <Footer /> </body> </html> |