- Enhanced tests to ensure consistent messageId generation for legacy inbox rows lacking a messageId. - Updated test descriptions for better clarity regarding the new messageId handling. - Adjusted test expectations to align with the updated behavior of relaying legacy inbox rows with generated messageIds.
13 lines
364 B
Vue
13 lines
364 B
Vue
<script setup lang="ts">
|
|
const { content } = useLandingContent();
|
|
|
|
usePageSeo("meta.homeTitle", "meta.homeDescription");
|
|
</script>
|
|
|
|
<template>
|
|
<v-container class="section">
|
|
<h1 class="text-h4 section-title">{{ content.download.title }}</h1>
|
|
<p class="text-body-2 mb-6">{{ content.download.note }}</p>
|
|
<DownloadSection />
|
|
</v-container>
|
|
</template>
|