Add BSc degree

This commit is contained in:
2023-11-05 20:04:16 +01:00
parent fc8bc02463
commit 104d7377b2
11 changed files with 56 additions and 15 deletions

View File

@ -1,6 +1,7 @@
<template>
<div class="border border-gray-500 dark:border-gray-300 rounded-md p-3 mx-auto w-full lg:w-2/3 xl:w-1/2">
<h3 class="text-2xl font-semibold text-center text-gray-900 dark:text-white">{{ props.title }}</h3>
<h4 v-if="props.subtitle" class="text font-semibold text-center text-gray-700 dark:text-gray-300">{{ props.subtitle }}</h4>
<div class="text-center mb-2">
<a v-for="link in props.links" :href="link.url" class="font-mono inline-block hover:underline mx-2">{{ link.label }}</a>
</div>
@ -17,6 +18,7 @@
const props = defineProps({
title: String,
subtitle: { type: String, required: false },
links: Object as PropType<{ label: string, url: string }[]>,
image: String
});

View File

@ -1,10 +1,18 @@
<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' }
]">
<p class="text-center">{{ $t("unibo_22-23") }}</p>
<p>{{ $t("bsc_thesis.description") }}</p>
</ProjectCard>
</template>
</template>
<script setup lang="ts">
import image from "@/assets/images/projects/bsc-thesis.png";
</script>

View File

@ -0,0 +1,14 @@
<template>
<ProjectCard
title="Tablut"
:links="[
]">
<p class="text-center">{{ $t("unibo_23-24") }}</p>
<p>{{ $t('tablut.description') }}</p>
</ProjectCard>
</template>
<script setup lang="ts">
</script>

View File

@ -15,17 +15,17 @@
{
title: $t('diploma'), time_label: '2015 - 2020',
description: $t('aldini'),
start: new Date(2015, september, 1), end: new Date(2020, june, 1)
start: new Date(2015, september, 15), end: new Date(2020, june, 20)
},
{
title: $t('bs in cs'), time_label: '2020 - 2023',
description: $t('unibo'),
start: new Date(2020, september, 1), end: new Date(2023, september, 1), current: true
start: new Date(2020, september, 21), end: new Date(2023, october, 11), current: false
},
{
title: $t('ms in ai'), time_label: '2023 - 2025',
description: $t('unibo'),
start: new Date(2023, september, 1), end: new Date(), current: true
start: new Date(2023, september, 18), end: new Date(), current: true
}
]"
:left="[

View File

@ -5,12 +5,14 @@
<ActivityParagraph :title="$t('ms in ai')" :subtitle="$t('unibo')" :right_text="`2023 - ${$t('present')}`">
</ActivityParagraph>
<ActivityParagraph :title="$t('bs in cs')" :subtitle="$t('unibo')" :right_text="`2020 - ${$t('present')}`">
<ActivityParagraph :title="$t('bs in cs')" :subtitle="$t('unibo')" :right_text="`2020 - 2023`">
<div>{{ $t("thesis title") }}: Subtopic-oriented biomedical summarization using pretrained language models</div>
<div>{{ $t("graduation grade") }}: 110/110 {{ $t("with honors") }}</div>
</ActivityParagraph>
<ActivityParagraph :title="$t('diploma')" :subtitle="$t('aldini')" right_text="2015 - 2020">
<div>{{ $t('diploma desc') }}</div>
<div>{{ $t("final grade") }}: 100/100 {{ $t("with honors") }}</div>
<div>{{ $t("graduation grade") }}: 100/100 {{ $t("with honors") }}</div>
</ActivityParagraph>
</div>
</template>