1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
export const Projects = [
{
name: "Boilerplate",
description: "A boilerplate for a web application",
image: "/images/boilerplate.webp",
link: "https://github.com/schererleander/boilerplate",
badges: ["Next.js", "Tailwind CSS", "TypeScript", "MongoDB", "MinIO"],
},
{
name: "Quiz Website",
description: "A quiz website",
image: "/images/quiz.webp",
link: "https://github.com/schererleander/quiz",
badges: ["Express", "PostgreSQL", "Tailwind CSS", "JavaScript"],
},
{
name: "Specula",
description: "A minimal TUI for file metadata",
image: "/images/specula.webp",
link: "https://github.com/schererleander/specula",
badges: ["Go", "Bubble Tea", "TUI"],
},
];
|