Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ build/
# private generated strategy reports
docs/materials/*
!docs/materials/.gitkeep

# graphify knowledge-graph cache (regenerate with `graphify update .`)
graphify-out/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
10 changes: 5 additions & 5 deletions src/data/categories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const categories: Category[] = [
},
{
id: 'culture',
name: 'Culture',
name: 'On Culture',
description: 'Social norms, collective behavior, and cultural critique',
icon: '🌍',
},
Expand Down Expand Up @@ -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: '💻',
},
Expand Down
21 changes: 8 additions & 13 deletions src/pages/about.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand All @@ -35,31 +36,25 @@ 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',
emoji: '\u{1F3B5}',
categoryId: 'art-expression',
},
{
label: 'Systems & Strategy',
label: 'On Systems & Strategy',
hint: 'Digital power, code, tools that matter',
emoji: '\u{1F4BB}',
categoryId: 'systems-strategy',
Expand Down
Loading