fix(web): correct blog colors for the light workspace + thumbnails

Only the .rail sidebar is dark; the .workspace content area is on the
light (#f6f7f4) page background. The previous blog styling assumed a dark
workspace, so text was light-grey on white (unreadable) and the link
green was too light.

- Darken the global link color to #0a7d59 (readable on white); content
  links only — rail nav stays inherited.
- Repaint .blog-content (post HTML) for a light surface: dark body text,
  light code/pre, light borders.
- Blog index/post: dark titles, readable grey meta, light row borders;
  light-themed footer.
- Add post thumbnails to the /blog index from featured_image.url.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Anthony Ettinger 2026-06-08 12:21:46 +00:00
parent 7e11130467
commit ce79f02211
4 changed files with 81 additions and 40 deletions

View file

@ -69,12 +69,14 @@ export default async function BlogPostPage({
<SiteShell active="Blog">
<article className="band" style={{ maxWidth: "48rem" }}>
<p style={{ marginBottom: "1.5rem" }}>
<Link href="/blog" style={{ color: "#b5beb2", textDecoration: "none" }}>
<Link href="/blog" style={{ color: "#5b6b7a", textDecoration: "none" }}>
Blog
</Link>
</p>
<h1 style={{ fontSize: "2.2rem", margin: "0 0 0.5rem" }}>{post.title}</h1>
<div style={{ color: "#8a95a0", fontSize: "0.85rem", marginBottom: "2rem" }}>
<h1 style={{ fontSize: "2.2rem", margin: "0 0 0.5rem", color: "#101418" }}>
{post.title}
</h1>
<div style={{ color: "#5b6b7a", fontSize: "0.85rem", marginBottom: "2rem" }}>
{formatDate(post.published_at)}
</div>
{post.featured_image?.url ? (

View file

@ -17,6 +17,7 @@ type PostRow = {
slug: string;
title: string;
excerpt: string | null;
featured_image: { url?: string } | null;
published_at: string;
};
@ -32,7 +33,7 @@ export default async function BlogIndex(): Promise<ReactNode> {
const supabase = publicClient();
const { data } = await supabase
.from("blog_posts")
.select("slug, title, excerpt, published_at")
.select("slug, title, excerpt, featured_image, published_at")
.eq("status", "published")
.order("published_at", { ascending: false });
const posts = (data ?? []) as PostRow[];
@ -50,35 +51,71 @@ export default async function BlogIndex(): Promise<ReactNode> {
</div>
{posts.length === 0 ? (
<p style={{ color: "#b5beb2" }}>No posts yet.</p>
<p style={{ color: "#5b6b7a" }}>No posts yet.</p>
) : (
<ul style={{ listStyle: "none", margin: 0, padding: 0 }}>
{posts.map((post) => (
<li
key={post.slug}
style={{
padding: "1.25rem 0",
borderTop: "1px solid rgba(245, 247, 244, 0.12)",
}}
>
<Link
href={`/blog/${post.slug}`}
style={{ color: "inherit", textDecoration: "none" }}
{posts.map((post) => {
const thumb = post.featured_image?.url;
return (
<li
key={post.slug}
style={{
padding: "1.25rem 0",
borderTop: "1px solid #e3e6e0",
}}
>
<h3 style={{ margin: "0 0 0.35rem", fontSize: "1.25rem" }}>
{post.title}
</h3>
</Link>
<div
style={{ color: "#8a95a0", fontSize: "0.85rem", marginBottom: "0.5rem" }}
>
{formatDate(post.published_at)}
</div>
{post.excerpt ? (
<p style={{ color: "#b5beb2", margin: 0 }}>{post.excerpt}</p>
) : null}
</li>
))}
<Link
href={`/blog/${post.slug}`}
style={{
display: "flex",
gap: "1rem",
color: "inherit",
textDecoration: "none",
alignItems: "flex-start",
}}
>
{thumb ? (
// eslint-disable-next-line @next/next/no-img-element
<img
src={thumb}
alt=""
style={{
width: "160px",
height: "100px",
objectFit: "cover",
borderRadius: "0.5rem",
flexShrink: 0,
border: "1px solid #e3e6e0",
}}
/>
) : null}
<div style={{ minWidth: 0 }}>
<h3
style={{
margin: "0 0 0.35rem",
fontSize: "1.25rem",
color: "#101418",
}}
>
{post.title}
</h3>
<div
style={{
color: "#5b6b7a",
fontSize: "0.85rem",
marginBottom: "0.5rem",
}}
>
{formatDate(post.published_at)}
</div>
{post.excerpt ? (
<p style={{ color: "#41505d", margin: 0 }}>{post.excerpt}</p>
) : null}
</div>
</Link>
</li>
);
})}
</ul>
)}
</div>