1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-11-20 19:40:52 -05:00

update link to archived hugo site

This commit is contained in:
2022-04-23 07:54:03 -04:00
parent de28dbf4ed
commit 392ad9bb56
4 changed files with 20 additions and 11 deletions

View File

@@ -1,3 +1,4 @@
import { NextSeo } from "next-seo";
import Image from "../components/Image";
import Link from "../components/Link";
import { styled } from "../lib/styles/stitches.config";
@@ -20,13 +21,17 @@ const H1 = styled("h1", {
const fourOhFour = () => {
return (
<Center>
<Image src={pandaGif} alt="404s make panda angry..." priority />
<>
<NextSeo title="404 Not Found" />
<H1>404: Page Not Found</H1>
<Center>
<Image src={pandaGif} alt="404s make panda angry..." priority />
<Link href="/">Go home?</Link>
</Center>
<H1>404: Page Not Found</H1>
<Link href="/">Go home?</Link>
</Center>
</>
);
};

View File

@@ -203,8 +203,8 @@ iframe {
<HorizontalRule />
<Figure src={img_2020_03} href="https://jarvis-git-v4-jakejarvis.vercel.app/" alt="March 2020">
<Link href="https://jarvis-git-v4-jakejarvis.vercel.app/">March 2020</Link> (
<Figure src={img_2020_03} href="https://quiet-truffle-92842d.netlify.app/" alt="March 2020">
<Link href="https://quiet-truffle-92842d.netlify.app/">March 2020</Link> (
<Link href="https://github.com/jakejarvis/jarv.is-hugo">view source</Link>)
</Figure>
</Content>

View File

@@ -22,6 +22,12 @@ const Wallpaper = styled("div", {
backgroundPosition: "center",
});
const DOS = styled(Terminal, {
height: "400px",
width: "100%",
maxWidth: "700px",
});
const Y2K = () => {
const [wallpaperUrl, setWallpaperUrl] = useState("");
@@ -58,9 +64,7 @@ const Y2K = () => {
/>
<Wallpaper style={{ backgroundImage: wallpaperUrl ? `url(${wallpaperUrl})` : "" }}>
<ErrorBoundary
fallback={<Terminal>Oh dear, it looks like something's gone VERY wrong. Sorry about that!</Terminal>}
>
<ErrorBoundary fallback={<DOS>Oh no, it looks like something's gone VERY wrong. Sorry about that!</DOS>}>
<VNC server={SOCKET_PROXY} />
</ErrorBoundary>
</Wallpaper>