mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-14 19:01:51 +01:00
19 lines
681 B
Vue
19 lines
681 B
Vue
<template>
|
|
<ProjectCard
|
|
:title="$t('bsc_thesis.title')"
|
|
:subtitle="$t('bsc_thesis.thesis_title')"
|
|
:image="image"
|
|
:links="[
|
|
{ label: 'Repository1', url: 'https://github.com/NotXia/biomed-ext-summ' },
|
|
{ label: 'Repository2', url: 'https://github.com/NotXia/pubmed-summ' },
|
|
{ label: $t('thesis'), url: 'https://amslaurea.unibo.it/id/eprint/29686' }
|
|
]">
|
|
|
|
<p class="text-center">{{ $t("unibo_22-23") }}</p>
|
|
<p>{{ $t("bsc_thesis.description") }}</p>
|
|
</ProjectCard>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import image from "@/assets/images/projects/bsc-thesis.png";
|
|
</script> |