Kenneth's Reads
Quotes and notes from my readings.
Now Reading
“
{quote.bookTitle}
{quote.content}
All Books
-
{
books.map((book) => (
- {book.data.title} )) }
--- import { getCollection } from "astro:content"; import BaseHead from "../components/BaseHead.astro"; const nowReading = { title: "The Creative Act", slug: "the-creative-act", }; const quote = { content: "Practicing a way of being that allows you to see the world through uncorrupted, innocent eyes can free you to act in concert with the universe's timetable.", bookTitle: "The Creative Act", }; const books = (await getCollection("read")).filter( (book) => book.slug !== nowReading.slug, ); ---
Quotes and notes from my readings.
“
{quote.content}