export const title = "Patrons"; export const layout = "base.njk"; const PatronCard = ({ full_name, image_url }) => (
{full_name}
{full_name}
); export default ({ patrons }) => { const users = patrons.included.Items .filter((item) => item.type === "user") .map((item) => item.attributes) .filter((item) => item.full_name !== "Xe"); return ( <>

Patrons

This page is a list of all of my patrons. Thank you all so much for your support! If you want to get on this list, please consider{" "} becoming a patron! This page will update whenever something changes on Patreon.

{users.map((user) => )}
{users.length === 0 && ( <>

No patrons yet!

Become a patron{" "} to get on this list!

)} ); };