interface Project {
name: string;
description: string;
tech: string[];
status: "active" | "maintained" | "archived";
url: string;
}
const projects: Project[] = [
{
description: "ESP32-based retro game console with XML game engine",
tech: ["ESP32", "C++", "XML", "IoT"],
status: "active",
},
{
description: "Full-featured compiler for custom Siyo language",
tech: ["Java", "Lexer", "Parser", "AST"],
status: "active",
},
{
description: "Embedded relational database with B-tree storage",
tech: ["Rust", "B-tree", "SQL", "TDD"],
status: "active",
}
];
export default projects;