diff --git a/src/layouts/err404.astro b/src/layouts/err404.astro
new file mode 100644
index 0000000..70cb6b0
--- /dev/null
+++ b/src/layouts/err404.astro
@@ -0,0 +1,35 @@
+---
+interface Props {
+ title: string;
+}
+
+const { title } = Astro.props;
+---
+
+
+
+
+
+
+
+
+
+ {title}
+
+
+
+
+
+
diff --git a/src/pages/404.astro b/src/pages/404.astro
new file mode 100644
index 0000000..4ab7402
--- /dev/null
+++ b/src/pages/404.astro
@@ -0,0 +1,33 @@
+---
+import Layout from '../layouts/err404.astro';
+import Card from '../components/Card.astro';
+---
+
+
+
+
+
+
+
\ No newline at end of file