import Layout from '../components/layout'; import rec from '../public/recommended.yaml'; import { toListItem, mapChild } from '../util/resrec'; function Recommended() { return (

This page is really for me to not forget/revisit the good things I have read, seen, heard, and/or experienced. This list may change, just as my opinions.

If the one you are looking for is not on this list, it is most likely I have not had the chance to read/listen to/watch it yet.

{ rec.map((item: Record) => { const lItem = toListItem(item) if (lItem) return mapChild(lItem, 0) }) }
); } export default Recommended;