mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-02-01 14:26:44 -06:00
Add WIP component for contact/projects pages
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user