--- import ProjectComponent from "@/components/Project.astro"; import { LANGUAGES as LANG } from "@/constants"; import Layout from "@/layouts/Layout.astro"; import type { Project } from "@/types"; type Link = { title: string; href: string; }; const links: Link[] = [ { title: "tangled (git)", href: "https://tangled.org/did:web:vt3e.cat", }, { title: "bluesky", href: "https://witchsky.app/profile/did:web:vt3e.cat", }, ]; const projects: Project[] = [ { name: "bluebell", description: "a pretty client for bluesky on the web.", links: { live: "https://bbell.vt3e.cat", source: "https://tangled.org/bbell.vt3e.cat", }, languages: [LANG.Vue, LANG.TypeScript], }, { name: "website", description: "this website!!", links: { source: "https://tangled.org/vt3e.cat/catsite", }, languages: [LANG.Astro, LANG.TypeScript], }, { name: "flake", description: "my nix flake used on my server & desktop.", links: { source: "https://tangled.org/vt3e.cat/flake", }, languages: [LANG.Nix], }, { name: "cmd", description: "a fully typesafe, lighweight cli framework", links: { source: "https://git.vt3e.cat/cmd.git", }, languages: [LANG.TypeScript], }, ]; ---

viii

it/she

demifem {"{rat,cat}"}girl frontend developer thing!

projects

some things that are public that i am working on!

{projects.map((project) => )}