From 8f13bd60e711f7aac1563cde2c832cd6c2a40258 Mon Sep 17 00:00:00 2001 From: Xevion Date: Tue, 14 Feb 2023 20:32:21 -0600 Subject: [PATCH] Add resume link on Index, adjust wide viewport rendering --- src/components/WorkInProgress.tsx | 6 +++--- src/pages/index.tsx | 5 +++-- src/styles/globals.scss | 4 ++++ 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/components/WorkInProgress.tsx b/src/components/WorkInProgress.tsx index aa041b2..d555da8 100644 --- a/src/components/WorkInProgress.tsx +++ b/src/components/WorkInProgress.tsx @@ -1,14 +1,14 @@ import type {FunctionComponent} from "react"; const WorkInProgress: FunctionComponent = () => { - return
+ return
+ className="bg-zinc-800 border border-zinc-700 rounded-md max-w-[23rem] sm:max-w-[25rem] lg:max-w-[30rem] mx-3 w-full p-5 flex flex-col items-center justify-center"> Work In Progress

- This website is a work-in progress. + This website is a work in-progress.
Unfortunately, this page hasn't been finished yet. Check back later.

diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 4e63c2e..6cb9e21 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -81,7 +81,8 @@ export async function getStaticProps() { const buttons = [ {text: "GitHub", href: "https://github.com/Xevion"}, - {text: "Contact", href: "/contact"} + {text: "Contact", href: "/contact"}, + {text: "Resume", href: "/resume"} ] const Home: NextPage = ({projects}: HomeStaticProps) => { @@ -99,7 +100,7 @@ const Home: NextPage = ({projects}: HomeStaticProps) => { -
+