polishing

This commit is contained in:
planetabhi
2024-12-09 13:13:37 +05:30
parent 674fcea5ce
commit 4d1b9dc468
2 changed files with 25 additions and 4 deletions
-4
View File
@@ -102,10 +102,6 @@ const { site, title, tagline } = Astro.props;
href="https://planetabhi.com/"
class="nu-u-link--subtle"
target="_blank">@planetabhi</a
>. <br /><a
href="https://new-ui.com/templates/directory"
class="nu-u-link--subtle"
target="_blank">Get this template</a
>
</p>
</div>
+25
View File
@@ -0,0 +1,25 @@
---
import Layout from "../layouts/Layout.astro";
import "@new-ui/reset";
import "@new-ui/colors";
import "@new-ui/typography";
import "@new-ui/effects";
import "@new-ui/spacings";
---
<Layout
site="404 Page Not Found - Rise of Machine"
title="Oops!"
tagline="We can't seem to find the page you're looking for. Error code: 404"
>
<main>
<div class="btn-group">
<a
href="https://riseofmachine.com/"
class="submit-btn"
tabindex="0">Back to Home</a
>
</div>
</main>
</Layout>