Tweak card images, dark mode text, social links, and add right sidebar

This commit is contained in:
2025-11-17 17:19:47 +08:00
parent 78b28a5b7b
commit b89c01c966
9 changed files with 118 additions and 20 deletions

View File

@@ -28,7 +28,7 @@ export function PostToc() {
if (items.length === 0) return null;
return (
<nav className="sticky top-20 text-xs text-slate-500">
<nav className="sticky top-20 text-xs text-slate-500 dark:text-slate-400">
<div className="mb-2 font-semibold text-slate-700 dark:text-slate-200">
</div>
@@ -47,4 +47,3 @@ export function PostToc() {
</nav>
);
}