(fix) footnotes in excerpts

This commit is contained in:
Cory Dransfeldt 2023-03-25 11:47:21 -07:00
parent c5dfb420d2
commit 3eecb6e406
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ draft: false
tags: [swr, api, fetch, react, nextjs]
---
My site was scaffolded out using [Timothy Lin](https://github.com/timlrx)'s [tailwind-nextjs-starter-blog](https://github.com/timlrx/tailwind-nextjs-starter-blog) project (which I highly recommend checking out). As part of the build out I wanted to display the books I'm currently reading and the song I most recently listened to, data available from [oku](https://oku.club) and [Last.fm](https://last.fm), respectively[^1]. I've added the display for this data to the top of the home page using a pair of light-weight React components.<!-- excerpt -->
My site was scaffolded out using [Timothy Lin](https://github.com/timlrx)'s [tailwind-nextjs-starter-blog](https://github.com/timlrx/tailwind-nextjs-starter-blog) project (which I highly recommend checking out). As part of the build out I wanted to display the books I'm currently reading and the song I most recently listened to, data available from [oku](https://oku.club) and [Last.fm](https://last.fm), respectively.<!-- excerpt -->[^1] I've added the display for this data to the top of the home page using a pair of light-weight React components.
To fetch the data for these components I elected to leverage [vercel/swr](https://github.com/vercel/swr), described as: