I switched my site backend to Notion
While the JavaScript community is buzzing over static websites, I always found it really interesting that Remix went out and made their website dynamically fetch and render versioned content from GitHub.
I don't want anything too fancy, but I was starting to feel the pain of a static website. This site is something to do in my limited spare time. I don't want to mess with Git. I want to make notes on my phone while I am lying down in bed or on the train, but GitHub and Markdown files are not really amenable to that.
Maybe I can do something similar to the Remix team for my own benefit.
I looked into a few different headless CMSs, but it turns out they quickly get expensive and generally don't have great mobile support.
My favorite headless CMS was Payload CMS 3.0. At the time of writing, they have a beta release of version 3.0 out, and it's basically going to be the first polished headless CMS solution that runs in Serverless JavaScript. But, I eventually dropped this because:
I also looked into WordPress. It does actually have a mobile app. However, as I wanted to host both Posts and Projects, it appeared I would need to either self-host or pay for a nice plan to get the level of features I want. Considering that you can get shared hosting for WordPress for as low as 220 yen/month in Japan, this is probably the best option objectively.
However, I also discovered Notion around the same time. The database feature is pretty amazing, and it has a basically unlimited free personal plan? Hopefully this won't change in the future, but it seems to have decent export features so I could escape later if needed. I also like the editor and that the Notion API just returns blocks as JSON, so my blog doesn't need to worry about Markdown at all, just rendering a JSON blob of blocks as various React Components.
Now that I completed the initial migration, I am going to try to fix various secondary bugs, like SEO, slugs, caching, watching for updates, and supporting more block types, like intra-page links.