Files
notxia.github.io/src/views/projects/cards/Platform.vue
2023-01-18 14:26:48 +01:00

28 lines
932 B
Vue

<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>