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:
23
src/views/resume/sections/Other.vue
Normal file
23
src/views/resume/sections/Other.vue
Normal file
@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<div>
|
||||
<h2 class="text-4xl font-bold tracking-wide">{{ t("other") }}</h2>
|
||||
|
||||
<ActivityParagraph :title="t('ois')" :subtitle="t('aldini')" right_text="2017-18 | 2018-19 | 2019-20">
|
||||
{{ t("ois description") }}
|
||||
</ActivityParagraph>
|
||||
|
||||
<ActivityParagraph title="MAST Academy: Expeditions" :subtitle="t('MAST foundation')" right_text="2018">
|
||||
{{ t("MAST expeditions description") }}
|
||||
</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