mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 15:28:28 -04:00
update link to archived hugo site
This commit is contained in:
parent
de28dbf4ed
commit
392ad9bb56
@ -112,7 +112,7 @@ module.exports = (phase, { defaultConfig }) => {
|
||||
redirects: async () => [
|
||||
// NOTE: don't remove this, it ensures de-AMPing the site hasn't offended our google overlords too badly!
|
||||
// https://developers.google.com/search/docs/advanced/experience/remove-amp#remove-only-amp
|
||||
{ source: "/:slug/amp.html", destination: "/:slug/", statusCode: 301 },
|
||||
{ source: "/notes/:slug/amp.html", destination: "/notes/:slug/", statusCode: 301 },
|
||||
|
||||
// remnants of previous sites/CMSes:
|
||||
{ source: "/index.xml", destination: "/feed.xml", permanent: true },
|
||||
|
@ -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,6 +21,9 @@ const H1 = styled("h1", {
|
||||
|
||||
const fourOhFour = () => {
|
||||
return (
|
||||
<>
|
||||
<NextSeo title="404 Not Found" />
|
||||
|
||||
<Center>
|
||||
<Image src={pandaGif} alt="404s make panda angry..." priority />
|
||||
|
||||
@ -27,6 +31,7 @@ const fourOhFour = () => {
|
||||
|
||||
<Link href="/">Go home?</Link>
|
||||
</Center>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user