--- import Layout from "../../layouts/Layout.astro"; import GiteaProjectCard from "../../components/GiteaProjectCard.astro"; import { ChevronLeft } from "@lucide/astro"; import repos from "../../data/repos.json"; ---

Projects

I enjoy the challenge of reimagining existing programs & scripts in my own unique way.

{ repos.length === 0 ? (

No projects found. Check back soon!

) : (
{repos.map((repo) => ( ))}
) }