mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-17 20:01:52 +01:00
28 lines
932 B
Vue
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> |