chore: added potassium portfolio item

Changed files
+26 -27
src
components
+24
src/components/projects/MyWebsite2026.astro
···
···
+
---
+
import Item from "../PortfolioItem.astro"
+
---
+
<Item
+
type="repo"
+
title="my-website-2026"
+
subtitle="My portfolio website for the year 2026 built with Astro. This is the current website you're on."
+
href="https://beta.imabanana80.com/"
+
tag="Astro"
+
tagcolor="--catppuccin-color-pink"
+
badges={[
+
{
+
icon: "Spool",
+
href: "https://tangled.org/@banana.tngl.sh/mywebsite-2026",
+
color: "var(--catppuccin-color-lavender)"
+
},
+
{
+
icon: "Github",
+
href: "https://github.com/imabanana80/mywebsite-2026",
+
color: "var(--catppuccin-color-green)"
+
},
+
]}
+
/>
+
+2 -27
src/components/section/Pinned.astro
···
---
import Label from "../Label.astro"
-
import Item from "../PortfolioItem.astro"
import Dotfiles from "../projects/Dotfiles.astro"
import IsleStats from "../projects/IsleStats.astro"
---
<div class="flex flex-col p-8 border-ctp-surface0 border w-full h-min relative">
<Label name="Pinned"/>
<div class="flex flex-wrap">
<IsleStats/>
-
<Item
-
type="team"
-
title="potassium.sh"
-
subtitle="An indie software development studio for the creative and insane, founded by me!"
-
icon="Users"
-
href="https://tangled.org/@banana.tngl.sh/dotfiles"
-
tag="Java"
-
tagcolor="--catppuccin-color-teal"
-
badges={[
-
{
-
icon: "Mail",
-
href: "mailto:team@potassium.sh",
-
color: "var(--catppuccin-color-maroon)"
-
},
-
{
-
icon: "Spool",
-
href: "https://tangled.org/@potassium.sh",
-
color: "var(--catppuccin-color-lavender)"
-
},
-
{
-
icon: "Bird",
-
href: "https://bsky.app/profile/potassium.sh",
-
color: "var(--catppuccin-color-sapphire)"
-
},
-
]}
-
/>
<Dotfiles />
</div>
</div>
···
---
import Label from "../Label.astro"
import Dotfiles from "../projects/Dotfiles.astro"
import IsleStats from "../projects/IsleStats.astro"
+
import Potassium from "../projects/PotassiumSh.astro"
---
<div class="flex flex-col p-8 border-ctp-surface0 border w-full h-min relative">
<Label name="Pinned"/>
<div class="flex flex-wrap">
<IsleStats/>
+
<Potassium />
<Dotfiles />
</div>
</div>