WIP website
1---
2import Label from "./Label.astro"
3import Item from "./PortfolioItem.astro"
4---
5
6<div class="flex flex-col p-8 border-ctp-surface0 border w-full h-min relative">
7 <Label name="Pinned"/>
8 <div class="flex flex-wrap">
9 <Item
10 type="project"
11 title="IsleStats"
12 subtitle="An MCC Island Discord statistics bot that renders beautiful stat cards to show off your stats."
13 icon="Archive"
14 href="https://islestats.net"
15 tag="Python"
16 tagcolor="--catppuccin-color-blue"
17 badges={[
18 {
19 icon: "Github",
20 href: "https://github.com/islestats",
21 color: "var(--catppuccin-color-green)"
22 },
23 {
24 icon: "MessageCircle",
25 href: "https://discord.gg//islestats",
26 color: "var(--catppuccin-color-blue)"
27 },
28 {
29 icon: "Mail",
30 href: "mailto:contact@islestats.net",
31 color: "var(--catppuccin-color-maroon)"
32 }
33 ]}
34 />
35 <Item
36 type="team"
37 title="potassium.sh"
38 subtitle="An indie software development studio for the creative and insane, founded by me!"
39 icon="Users"
40 href="https://tangled.org/@banana.tngl.sh/dotfiles"
41 tag="Java"
42 tagcolor="--catppuccin-color-teal"
43 badges={[
44 {
45 icon: "Mail",
46 href: "mailto:team@potassium.sh",
47 color: "var(--catppuccin-color-maroon)"
48 },
49 {
50 icon: "Spool",
51 href: "https://tangled.org/@potassium.sh",
52 color: "var(--catppuccin-color-lavender)"
53 },
54 {
55 icon: "Bird",
56 href: "https://bsky.app/profile/potassium.sh",
57 color: "var(--catppuccin-color-sapphire)"
58 },
59 ]}
60 />
61 <Item
62 type="repo"
63 title="dotfiles"
64 subtitle="My personal configuration dotfiles for endeavouros linux."
65 icon="BookMarked"
66 href="https://tangled.org/@banana.tngl.sh/dotfiles"
67 badges={[
68 {
69 icon: "Book",
70 href: "https://wiki.archlinux.org/title/Dotfiles",
71 color: "var(--catppuccin-color-sapphire)"
72 },
73 ]}
74 />
75 </div>
76</div>