aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/workInProgress/page.jsx
blob: 66d1e2226b52ea7ea6f2608ac4393f609d260933 (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 text-center">
				This section is undergoing a complete overhaul. Sorry for the
				inconvenience.
			</p>
		</main>
	);
};

export default WorkInProgress;