mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-18 12:21:47 +01:00
Add résumé section
This commit is contained in:
22
src/views/resume/sections/Education.vue
Normal file
22
src/views/resume/sections/Education.vue
Normal file
@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div>
|
||||
<h2 class="text-4xl font-bold tracking-wide">{{ t("education") }}</h2>
|
||||
|
||||
<ActivityParagraph :title="t('bs in cs')" :subtitle="t('unibo')" :right_text="`2020 - ${t('present')}`">
|
||||
</ActivityParagraph>
|
||||
|
||||
<ActivityParagraph :title="t('diploma')" :subtitle="t('aldini')" right_text="2015 - 2020">
|
||||
{{ t("final degree") }}: 100/100 {{ t("with honors") }}
|
||||
</ActivityParagraph>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useI18n } from "vue-i18n";
|
||||
import ActivityParagraph from "../components/ActivityParagraph.vue";
|
||||
import locale from "../locale.js";
|
||||
|
||||
// @ts-ignore
|
||||
const { t } = useI18n({ messages: locale });
|
||||
</script>
|
||||
Reference in New Issue
Block a user