aboutsummaryrefslogtreecommitdiff
path: root/src/data/projects.ts
blob: dcee78282d01d356d46014839f4152fa00d777b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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: "Space Invaders",
    description: "A space invaders clone written in Python",
    image: "/images/spaceinvaders.webp",
    link: "https://github.com/schererleander/spaceinvaders",
    badges: ["Python", "Pygame"],
  },
  {
    name: "Specula",
    description: "A minimal TUI for file metadata",
    image: "/images/specula.webp",
    link: "https://github.com/schererleander/specula",
    badges: ["Go", "Bubble Tea", "TUI"],
  },
  
];