1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-10-28 14:45:52 -04: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

@@ -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>