mirror of
https://github.com/Xevion/xevion.dev.git
synced 2025-12-06 13:17:06 -06:00
17 lines
688 B
TypeScript
17 lines
688 B
TypeScript
import type {FunctionComponent} from "react";
|
|
|
|
const WorkInProgress: FunctionComponent = () => {
|
|
return <div className="w-full my-10 flex justify-center">
|
|
<div
|
|
className="bg-zinc-850 border border-zinc-700 rounded-md max-w-screen-md w-full m-1 p-5 flex flex-col items-center justify-center">
|
|
<p className="font-semibold text-3xl sm:text-4xl pb-2">Work In Progress</p>
|
|
<p className="text-lg text-center">
|
|
This website is a work-in progress.
|
|
<br/>
|
|
Unfortunately, this page hasn't been finished yet. Check back later.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
export default WorkInProgress; |