aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/not_found/NotFound.jsx8
-rw-r--r--src/components/site/Site.jsx9
2 files changed, 17 insertions, 0 deletions
diff --git a/src/components/not_found/NotFound.jsx b/src/components/not_found/NotFound.jsx
new file mode 100644
index 0000000..71ed075
--- /dev/null
+++ b/src/components/not_found/NotFound.jsx
@@ -0,0 +1,8 @@
+import React from "react";
+
+
+export default function NotFound() {
+ return (
+ <div>Not Found!</div>
+ )
+}
diff --git a/src/components/site/Site.jsx b/src/components/site/Site.jsx
new file mode 100644
index 0000000..0c6c2f9
--- /dev/null
+++ b/src/components/site/Site.jsx
@@ -0,0 +1,9 @@
+import react from "react";
+
+export default function Site() {
+ return (
+ <div>
+ site page placeholder
+ </div>
+ )
+}