---
// Import the global.css file here so that it is included on
// all pages through the use of the component.
import type { Member } from "../store/member"
import "../styles/global.css"
const { member } = Astro.props as { member: Member }
const avatar = member.avatar;
---