Skip to content
Open
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
21 changes: 21 additions & 0 deletions src/views/AboutPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,20 @@ const sourcesStore = useSourcesStore();
<h1 class="subtitle is-6 mt-6">{{ $t('landing.partnership') }}</h1>
</div>

<div class="video">
<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 class="product-description">
<h3 class="title is-size-4 pt-6 has-text-centered">{{ $t('landing.aboutTitle') }}</h3>
<p class="subtitle is-size-6-mobile mt-4">
Expand Down Expand Up @@ -149,6 +163,13 @@ const sourcesStore = useSourcesStore();
</template>

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

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