WIP website
1---
2import Item from "../PortfolioItem.astro"
3---
4<Item
5 type="project"
6 title="IsleStats"
7 subtitle="An MCC Island Discord statistics bot that renders beautiful stat cards to show off your stats."
8 href="https://islestats.net"
9 tag="Python"
10 tagcolor="--catppuccin-color-blue"
11 badges={[
12 {
13 icon: "Github",
14 href: "https://github.com/islestats",
15 color: "var(--catppuccin-color-green)"
16 },
17 {
18 icon: "MessageCircle",
19 href: "https://discord.gg//islestats",
20 color: "var(--catppuccin-color-blue)"
21 },
22 {
23 icon: "Mail",
24 href: "mailto:contact@islestats.net",
25 color: "var(--catppuccin-color-maroon)"
26 }
27 ]}
28/>