Projects moved and finished to showcase on index

This commit is contained in:
2024-08-06 22:45:30 +02:00
parent 8b6dbc83c7
commit 6dc6a581e3
37 changed files with 482 additions and 90 deletions

View File

@ -9,4 +9,15 @@ pub struct ProjectMetadata {
pub cover_image: Option<String>,
pub tags: Vec<String>,
pub featured: bool,
pub link: Option<String>,
}
pub fn translate_classification(classification: &str) -> &str {
match classification {
"webapp" => "Web application",
"website" => "Web site",
"presentation" => "Presentation",
"videogame" => "Video game",
any => any,
}
}