From: Cameron Otsuka Date: Sat, 22 Nov 2025 01:29:44 +0000 (-0800) Subject: update page descriptions X-Git-Url: https://git.otsuka.systems/?a=commitdiff_plain;h=e7cceea258846db2c208495f22fabe24a912cfc0;p=cotsuka.github.io update page descriptions --- diff --git a/package.json b/package.json index 1eb7f53..92a71b2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cotsuka.github.io", - "description": "The collection of Cameron's thoughts.", + "description": "Cameron Otsuka's personal site featuring Bitcoin analysis, capital market insights, and thoughtful commentary on technology, privacy, and culture.", "version": "2.1.0", "type": "module", "scripts": { diff --git a/src/pages/articles/index.astro b/src/pages/articles/index.astro index 5e4a22e..9dc0081 100644 --- a/src/pages/articles/index.astro +++ b/src/pages/articles/index.astro @@ -7,7 +7,7 @@ const articles = await getCollection('articles'); const sortedArticles = articles.sort((a, b) => b.data.date.getTime() - a.data.date.getTime()); --- - +

Articles

{sortedArticles.map((article) => { diff --git a/src/pages/bitcoin.astro b/src/pages/bitcoin.astro index e7b30ea..d96c12c 100644 --- a/src/pages/bitcoin.astro +++ b/src/pages/bitcoin.astro @@ -2,7 +2,7 @@ import Base from '@layouts/base.astro'; --- - +

Bitcoin

diff --git a/src/pages/feed.xml.ts b/src/pages/feed.xml.ts index 3979d9f..1f3cd8e 100644 --- a/src/pages/feed.xml.ts +++ b/src/pages/feed.xml.ts @@ -1,7 +1,7 @@ import rss from '@astrojs/rss'; import { getCollection } from 'astro:content'; import formatDate from '@utils/formatDate.ts'; -import { siteSubtitle, siteTitle } from '@utils/globals.ts'; +import { siteDescription, siteTitle } from '@utils/globals.ts'; import createSlug from '@utils/createSlug.ts'; export async function GET(context: any) { @@ -36,7 +36,7 @@ export async function GET(context: any) { const sortedFeedItems = feedItems.sort((a, b) => b.pubDate.getTime() - a.pubDate.getTime()); return rss({ title: siteTitle, - description: siteSubtitle, + description: siteDescription, site: context.site, items: sortedFeedItems }); diff --git a/src/pages/index.astro b/src/pages/index.astro index 125de02..0f6934b 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -26,7 +26,7 @@ const contributions = [ ]; --- - +

I am Head of Data and Analytics at Build Asset Management, where I've helped launch a private credit fund investing into over-collateralized bitcoin-backed loans, a fixed income ETF and related vehicles, and built the internal tech stack that glues everything together.

diff --git a/src/pages/podcasts/index.astro b/src/pages/podcasts/index.astro index 3a57e6f..0b23b71 100644 --- a/src/pages/podcasts/index.astro +++ b/src/pages/podcasts/index.astro @@ -8,7 +8,7 @@ const podcasts = await getCollection('podcasts'); const sortedPodcasts = podcasts.sort((a, b) => b.data.date.getTime() - a.data.date.getTime()); --- - +

Podcasts

{sortedPodcasts.map((podcast) => { diff --git a/src/pages/reviews/index.astro b/src/pages/reviews/index.astro index 20c0cf2..6ab44d9 100644 --- a/src/pages/reviews/index.astro +++ b/src/pages/reviews/index.astro @@ -9,7 +9,7 @@ const reviews = await getCollection('reviews'); const sortedReviews = reviews.sort((a, b) => b.data.date.getTime() - a.data.date.getTime()); --- - +

Reviews

Rating Distribution

diff --git a/src/utils/globals.ts b/src/utils/globals.ts index 5e78b05..c5820fb 100644 --- a/src/utils/globals.ts +++ b/src/utils/globals.ts @@ -1,5 +1,5 @@ export const siteTitle = "Cameron Otsuka"; -export const siteSubtitle = "The collection of Cameron's thoughts." +export const siteDescription = "Cameron Otsuka's personal site featuring Bitcoin analysis, capital market insights, and thoughtful commentary on technology, privacy, and culture." export const siteAuthor = { "name": "Cameron Otsuka", "email": "cameron@otsuka.haus"