Text
Title 1
SOme text
Title 2
Another Text
Title 3
Another one text
Title 4
List:
- test
- test
Disclaimer: My site is my “breakable toy”. I enjoy and intentionally change technology and try new patterns here. I'd encourage you to do the same and then write about why you made those choices.
code
const sum = (a, b) => a + b
<Tweet id='1457032789883187201' />
The Tweet
component handles both data fetching and creating UI, all bundled up in a handy npm package (worth an exception here). Notably, additional Server Components added to my pages aren't increasing the client-side JavaScript bundle. This “templating” remains server-only.
Another example is on my work page. I love that I can drop this component in anywhere:
¹: Even when I moved to a CMS, I was still writing in MDX. For my developer blog, it's by far the easiest for me to maintain. I've gone the opposite route with custom components backed by a CMS on larger projects, but has always felt unnecessary here.