mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-18 20:31:47 +01:00
Add projects
This commit is contained in:
28
src/views/projects/cards/Platform.vue
Normal file
28
src/views/projects/cards/Platform.vue
Normal 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>
|
||||
Reference in New Issue
Block a user