From 6e1fbeceedada4de17a12bb25fad9c28933d6b29 Mon Sep 17 00:00:00 2001 From: Nicolas James Date: Fri, 14 Feb 2025 16:40:30 +1100 Subject: initial commit --- src/components/not_found/NotFound.jsx | 8 ++++++++ src/components/site/Site.jsx | 9 +++++++++ 2 files changed, 17 insertions(+) create mode 100644 src/components/not_found/NotFound.jsx create mode 100644 src/components/site/Site.jsx (limited to 'src/components') 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 ( +
Not Found!
+ ) +} 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 ( +
+ site page placeholder +
+ ) +} -- cgit v1.2.3