|
@ -10,7 +10,8 @@ export type Project = { |
|
|
export const projects: Project[] = [ |
|
|
export const projects: Project[] = [ |
|
|
{ |
|
|
{ |
|
|
title: window.location.hostname.split(".").slice(0, 2).join("."), |
|
|
title: window.location.hostname.split(".").slice(0, 2).join("."), |
|
|
description: "This website.", |
|
|
description: |
|
|
|
|
|
"This website. You've probably missed some things. Look around.", |
|
|
url: "https://github.com/MKRhere/pw2", |
|
|
url: "https://github.com/MKRhere/pw2", |
|
|
cat: "web", |
|
|
cat: "web", |
|
|
tags: ["react", "vite"], |
|
|
tags: ["react", "vite"], |
|
@ -77,7 +78,7 @@ export const otherProjects: Project[] = [ |
|
|
title: "storymap", |
|
|
title: "storymap", |
|
|
description: |
|
|
description: |
|
|
"Reverse-engineered thirdparty map renderer for Vintage Story in Zig ⚡️", |
|
|
"Reverse-engineered thirdparty map renderer for Vintage Story in Zig ⚡️", |
|
|
// url: "https://github.com/MadrasMC/storymap",
|
|
|
url: "https://github.com/MadrasMC/storymap", |
|
|
cat: "cli", |
|
|
cat: "cli", |
|
|
tags: ["vintage-story", "zig"], |
|
|
tags: ["vintage-story", "zig"], |
|
|
wip: true, |
|
|
wip: true, |
|
@ -96,4 +97,11 @@ export const otherProjects: Project[] = [ |
|
|
cat: "lib", |
|
|
cat: "lib", |
|
|
tags: ["postgresql", "json", "data-extraction"], |
|
|
tags: ["postgresql", "json", "data-extraction"], |
|
|
}, |
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
title: window.location.hostname.split(".").slice(0, 2).join("."), |
|
|
|
|
|
description: "Did you find all the easter eggs? Keep looking.", |
|
|
|
|
|
url: "https://github.com/MKRhere/pw2", |
|
|
|
|
|
cat: "web", |
|
|
|
|
|
tags: ["react", "vite"], |
|
|
|
|
|
}, |
|
|
]; |
|
|
]; |
|
|