+
Hi there! I’m Jake. 👋
@@ -276,16 +276,15 @@ const Page = () => {
plain
>
{" "}
-
2B0C 9CF2 51E6 9A39
-
+
,{" "}
diff --git a/app/previously/page.mdx b/app/previously/page.mdx
index bfd121f2..3199ba6b 100644
--- a/app/previously/page.mdx
+++ b/app/previously/page.mdx
@@ -81,7 +81,7 @@ _Previously on the [Cringey Chronicles™](https://web.archive.org/web/20010
---
-🚨 Trigger warning: excessive marquees, animated GIFs, Comic Sans, popups, color: limegreen
ahead...
+🚨 Trigger warning: excessive marquees, animated GIFs, Comic Sans, popups, color: limegreen
ahead...
[ Click here for the _full_ experience anyway.](https://y2k.pages.dev)
diff --git a/app/robots.ts b/app/robots.ts
index 5b2a3f7f..92fd6f2c 100644
--- a/app/robots.ts
+++ b/app/robots.ts
@@ -1,8 +1,6 @@
import { BASE_URL } from "../lib/config/constants";
import type { MetadataRoute } from "next";
-export const dynamic = "force-static";
-
const robots = (): MetadataRoute.Robots => ({
rules: [
{
diff --git a/app/sitemap.ts b/app/sitemap.ts
index 499b2ba8..bf17771c 100644
--- a/app/sitemap.ts
+++ b/app/sitemap.ts
@@ -4,8 +4,6 @@ import { getFrontMatter } from "../lib/helpers/posts";
import { BASE_URL } from "../lib/config/constants";
import type { MetadataRoute } from "next";
-export const dynamic = "force-static";
-
const sitemap = async (): Promise => {
// start with manual routes
const routes: MetadataRoute.Sitemap = [
diff --git a/app/zip/page.tsx b/app/zip/page.tsx
index 6056077c..d76b7354 100644
--- a/app/zip/page.tsx
+++ b/app/zip/page.tsx
@@ -32,7 +32,6 @@ const Page = () => {
overflowX: "auto",
padding: "1em",
fontSize: "0.9em",
- fontFamily: "var(--fonts-mono)",
tabSize: 2,
border: "1px solid var(--colors-kinda-light)",
borderRadius: "0.6em",
diff --git a/components/Header/Header.module.css b/components/Header/Header.module.css
index d6d46f0e..75938ba9 100644
--- a/components/Header/Header.module.css
+++ b/components/Header/Header.module.css
@@ -14,22 +14,22 @@
backdrop-filter: saturate(180%) blur(5px);
}
-.homeImage {
+.avatar {
width: 50px;
height: 50px;
border: 1px solid var(--colors-light);
border-radius: 50%;
}
-.homeLink {
+.home {
display: inline-flex;
flex-shrink: 0;
align-items: center;
color: var(--colors-medium-dark) !important;
}
-.homeLink:hover,
-.homeLink:focus-visible {
+.home:hover,
+.home:focus-visible {
color: var(--colors-link) !important;
}
@@ -56,14 +56,14 @@
height: 5.9em;
}
- .homeImage {
+ .avatar {
width: 70px;
height: 70px;
border-width: 2px;
}
- .homeLink:hover .homeImage,
- .homeLink:focus-visible .homeImage {
+ .home:hover .avatar,
+ .home:focus-visible .avatar {
border-color: var(--colors-link-underline);
}
diff --git a/components/Header/Header.tsx b/components/Header/Header.tsx
index 998c5f9b..734a9f8d 100644
--- a/components/Header/Header.tsx
+++ b/components/Header/Header.tsx
@@ -7,7 +7,7 @@ import type { ComponentPropsWithoutRef } from "react";
import styles from "./Header.module.css";
-import selfieJpg from "./selfie.jpg";
+import avatarImg from "../../app/avatar.jpg";
export type HeaderProps = ComponentPropsWithoutRef<"header">;
@@ -15,11 +15,11 @@ const Header = ({ className, ...rest }: HeaderProps) => {
return (