mirror of
https://github.com/Xevion/xevion.dev.git
synced 2025-12-05 23:16:57 -06:00
Add WIP component for contact/projects pages
This commit is contained in:
17
src/components/WorkInProgress.tsx
Normal file
17
src/components/WorkInProgress.tsx
Normal file
@@ -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;
|
||||
@@ -1,8 +1,10 @@
|
||||
import {NextPage} from "next";
|
||||
import {type NextPage} from "next";
|
||||
import AppWrapper from "../components/AppWrapper";
|
||||
import WorkInProgress from "../components/WorkInProgress";
|
||||
|
||||
const ContactPage: NextPage = () => {
|
||||
return <AppWrapper>
|
||||
<WorkInProgress />
|
||||
</AppWrapper>
|
||||
}
|
||||
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
import {NextPage} from "next";
|
||||
import {type NextPage} from "next";
|
||||
import AppWrapper from "../components/AppWrapper";
|
||||
import WorkInProgress from "../components/WorkInProgress";
|
||||
|
||||
const ProjectsPage: NextPage = () => {
|
||||
return <AppWrapper />;
|
||||
return <AppWrapper>
|
||||
<WorkInProgress/>
|
||||
</AppWrapper>;
|
||||
}
|
||||
|
||||
export default ProjectsPage;
|
||||
Reference in New Issue
Block a user