From 5a478b42df9f92fd080d9c275134355365e88083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Rodr=C3=ADguez=20Mart=C3=ADnez?= Date: Sat, 18 Jul 2026 20:49:04 -0400 Subject: [PATCH] Update .gitignore to include graphify knowledge-graph cache. Revise category names in categories.ts and README.md for consistency, adding "On" prefix to relevant categories. Modify labels in about.astro to reflect updated category names. --- .gitignore | 3 +++ README.md | 2 +- src/data/categories.ts | 10 +++++----- src/pages/about.astro | 21 ++++++++------------- 4 files changed, 17 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index 1c8f9474..c29de9e6 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,6 @@ build/ # private generated strategy reports docs/materials/* !docs/materials/.gitkeep + +# graphify knowledge-graph cache (regenerate with `graphify update .`) +graphify-out/ diff --git a/README.md b/README.md index a0401aa4..e6f3c400 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Live site: [notes.antoniwan.online](https://notes.antoniwan.online) ## What it includes - Posts in `src/content/p/` (Markdown and MDX) -- **10 categories** (for example Parenting, Psychology, Politics, Metaspace) โ€” see `src/data/categories.ts` +- **10 categories** (for example On Parenting; Psychology, Roughly; On Politics; Metaspace) โ€” see `src/data/categories.ts` - **Dark and light theme**, including system preference - **Responsive layout** for small and large screens - **Search** in the header (client-side index built at build time) diff --git a/src/data/categories.ts b/src/data/categories.ts index 6d7ecc87..dca9e754 100644 --- a/src/data/categories.ts +++ b/src/data/categories.ts @@ -14,7 +14,7 @@ export const categories: Category[] = [ }, { id: 'culture', - name: 'Culture', + name: 'On Culture', description: 'Social norms, collective behavior, and cultural critique', icon: '๐ŸŒ', }, @@ -44,25 +44,25 @@ export const categories: Category[] = [ }, { id: 'parenting', - name: 'Parenting', + name: 'On Parenting', description: 'Raising resilient children, family dynamics, and personal growth', icon: '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', }, { id: 'politics', - name: 'Politics', + name: 'On Politics', description: 'Power dynamics, social structures, and collective healing', icon: 'โš–๏ธ', }, { id: 'psychology', - name: 'Psychology', + name: 'Psychology, Roughly', description: 'Human behavior, social dynamics, and mental processes', icon: '๐Ÿง ', }, { id: 'systems-strategy', - name: 'Systems & Strategy', + name: 'On Systems & Strategy', description: 'Digital power, code, and strategic design', icon: '๐Ÿ’ป', }, diff --git a/src/pages/about.astro b/src/pages/about.astro index c5c55269..b102cf6a 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -16,6 +16,7 @@ type AboutTopic = { categoryId?: string; }; +// Curated voice list for About โ€” not a full category dump (see `src/data/categories.ts`). const topics: AboutTopic[] = [ { label: 'Integration & Growth', @@ -24,7 +25,7 @@ const topics: AboutTopic[] = [ categoryId: 'integration-growth', }, { - label: 'Parenting', + label: 'On Parenting', hint: 'Presence with my kids, the sacred in the ordinary', emoji: '\u{1F468}\u{200D}\u{1F469}\u{200D}\u{1F467}\u{200D}\u{1F466}', categoryId: 'parenting', @@ -35,23 +36,17 @@ const topics: AboutTopic[] = [ emoji: '\u{1F49C}', }, { - label: 'Clear Signals', - hint: 'Honest environments, boundaries, real connection', - emoji: '\u{1F4E1}', + label: 'Psychology, Roughly', + hint: "Human behavior, healing, clear signals, the body's wisdom", + emoji: '\u{1F9E0}', categoryId: 'psychology', }, { - label: 'Politics & Culture', - hint: 'Systems that serve people; dignity that need not be earned', + label: 'On Politics & Culture', + hint: 'Power, norms, dignity that need not be earned', emoji: '\u{2696}\u{FE0F}', categoryId: 'politics', }, - { - label: 'Psychology', - hint: "Human behavior, healing, the body's wisdom", - emoji: '\u{1F9E0}', - categoryId: 'psychology', - }, { label: 'Art & Expression', hint: 'Creative soul, truth-telling, aesthetic power', @@ -59,7 +54,7 @@ const topics: AboutTopic[] = [ categoryId: 'art-expression', }, { - label: 'Systems & Strategy', + label: 'On Systems & Strategy', hint: 'Digital power, code, tools that matter', emoji: '\u{1F4BB}', categoryId: 'systems-strategy',