Files
notxia.github.io/components/projects/cards/AnimalHouse.vue
2023-04-30 18:36:39 +02:00

21 lines
698 B
Vue

<template>
<ProjectCard
title="Animal House" :image="image"
:links="[
{ label: 'Repository', url: 'https://github.com/NotXia/animal-house' }
]">
<p class="text-center">{{ $t("unibo_21-22") }}</p>
<p>{{ $t('animalhouse.description') }}</p>
<ul class="list-inside list-['-_']">
<li>{{ $t('animalhouse.description.game') }}</li>
<li>{{ $t('animalhouse.description.frontoffice') }}</li>
<li>{{ $t('animalhouse.description.backoffice') }}</li>
</ul>
</ProjectCard>
</template>
<script setup lang="ts">
import image from "@/assets/images/projects/animal-house.png";
</script>