diff options
| author | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2025-02-14 16:40:30 +1100 |
|---|---|---|
| committer | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2025-02-14 16:40:30 +1100 |
| commit | 6e1fbeceedada4de17a12bb25fad9c28933d6b29 (patch) | |
| tree | 2be3e99cca95949f1153e3276af2b4497b98191e /src/components | |
initial commit
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/not_found/NotFound.jsx | 8 | ||||
| -rw-r--r-- | src/components/site/Site.jsx | 9 |
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> + ) +} |
