aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/workInProgress
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/components/workInProgress')
-rw-r--r--src/app/components/workInProgress/page.jsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/app/components/workInProgress/page.jsx b/src/app/components/workInProgress/page.jsx
new file mode 100644
index 0000000..0af0a98
--- /dev/null
+++ b/src/app/components/workInProgress/page.jsx
@@ -0,0 +1,12 @@
+const WorkInProgress = async () => {
+ return (
+ <main className="h-screen w-screen flex flex-col items-center justify-center">
+ <p className="text-sky-400 uppercase">
+ This section is undergoing a complete overhaul. Sorry for the
+ inconvenience.
+ </p>
+ </main>
+ );
+};
+
+export default WorkInProgress;