From 7220e0878ea55c4b0f08e4b4d97cc7368e76e294 Mon Sep 17 00:00:00 2001 From: Xevion Date: Sat, 28 Dec 2024 17:00:47 -0600 Subject: [PATCH] Remove WIP component --- src/components/WorkInProgress.tsx | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/components/WorkInProgress.tsx diff --git a/src/components/WorkInProgress.tsx b/src/components/WorkInProgress.tsx deleted file mode 100644 index c23eea2..0000000 --- a/src/components/WorkInProgress.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import type { FunctionComponent } from "react"; - -const WorkInProgress: FunctionComponent = () => { - return ( -
-
- - Work In Progress - -

- This website is a work in-progress. -
- Unfortunately, this page hasn't been finished yet. Check back - later. -

-
-
- ); -}; - -export default WorkInProgress;