aboutsummaryrefslogtreecommitdiff
path: root/src/data
diff options
context:
space:
mode:
Diffstat (limited to 'src/data')
-rw-r--r--src/data/projects.ts31
-rw-r--r--src/data/tools.ts38
2 files changed, 0 insertions, 69 deletions
diff --git a/src/data/projects.ts b/src/data/projects.ts
deleted file mode 100644
index dcee782..0000000
--- a/src/data/projects.ts
+++ /dev/null
@@ -1,31 +0,0 @@
-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"],
- },
-
-]; \ No newline at end of file
diff --git a/src/data/tools.ts b/src/data/tools.ts
deleted file mode 100644
index 0f753f0..0000000
--- a/src/data/tools.ts
+++ /dev/null
@@ -1,38 +0,0 @@
-export const Tools = [
- {
- name: "Linux",
- color: "bg-neutral-500/20",
- description: "Server and desktop OS",
- image: "/icons/linux.svg",
- },
- {
- name: "Git",
- color: "bg-orange-500/20",
- description: "Version control",
- image: "/icons/git.svg",
- },
- {
- name: "Docker",
- color: "bg-blue-500/20",
- description: "Containerization",
- image: "/icons/docker.svg",
- },
- {
- name: "Python",
- color: "bg-yellow-500/20",
- description: "Scripting lang",
- image: "/icons/python.svg",
- },
- {
- name: "Java",
- color: "bg-orange-500/20",
- description: "Object-oriented programming",
- image: "/icons/java.svg",
- },
- {
- name: "Nix",
- color: "bg-blue-500/20",
- description: "Declarative & reproducible",
- image: "/icons/nix.svg"
- },
-];