blob: 0af0a98ad13371bc6a55770b55c5acb9096f6365 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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;
|