Add projects

This commit is contained in:
2023-01-18 14:26:48 +01:00
parent 2d4c9dafa8
commit 65066b0c80
15 changed files with 244 additions and 8 deletions

View File

@ -0,0 +1,28 @@
<template>
<ProjectCard
title="Platform game" :image="image"
:description="t('description')"
:links="[
{ label: 'Repository', url: 'https://github.com/NotXia/platform-game' }
]" />
</template>
<script setup lang="ts">
import ProjectCard from "../ProjectCard.vue";
import { useI18n } from "vue-i18n";
import image from "@/assets/projects/platform.png";
const { t } = useI18n({ messages: {
en: {
description:
"Project for the Programmin course (University of Bologna, A.Y. 2020-2021).\n" +
"Text based platform game with randomly generated levels."
},
it: {
description:
"Progetto per il corso di Programmazione (Università di Bologna, A.A. 2020-2021).\n" +
"Gioco platform su terminale con livelli generati casualmente."
}
} });
</script>