Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/localisation/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ export const en = {
en: 'English'
},
landing: {
toolPresentation: 'Tool presentation',
sourceNameTitle: 'Resource Name',
sourceUrlTitle: 'Resource Link',
sourceNumberTitle: 'Number of Documents',
Expand Down
1 change: 1 addition & 0 deletions src/localisation/fr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ export const fr = {
en: 'Anglais'
},
landing: {
toolPresentation: 'Présentation de l’outil',
sourceNameTitle: 'Nom de la ressource',
sourceUrlTitle: 'Lien vers la ressource',
sourceNumberTitle: 'Nombre de documents',
Expand Down
22 changes: 22 additions & 0 deletions src/views/AboutPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,20 @@ const sourcesStore = useSourcesStore();
<p class="subtitle is-size-6-mobile mt-4">
{{ $t('landing.aboutDescription') }}
</p>
<div class="video mt-6">
<h1 class="subtitle has-text-weight-bold mb-2">{{ $t('landing.toolPresentation') }}</h1>
<iframe
class="video"
title="vimeo-player"
src="https://player.vimeo.com/video/1155027283?h=afaa86b58d"
width="640"
height="360"
frameborder="0"
referrerpolicy="strict-origin-when-cross-origin"
allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share"
allowfullscreen
></iframe>
</div>
</div>

<div class="section mt-6" v-if="sourcesStore?.infoPerCorpus?.length > 0">
Expand Down Expand Up @@ -149,6 +163,14 @@ const sourcesStore = useSourcesStore();
</template>

<style scoped>
.video {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 1rem;
}

.sources-table th {
text-align: left;
padding-left: 0;
Expand Down
Loading