- 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.
24 lines
631 B
Vue
24 lines
631 B
Vue
<script setup lang="ts">
|
|
usePageSeo("meta.homeTitle", "meta.homeDescription");
|
|
useTrackSections();
|
|
const { containerRef } = useParallaxSections();
|
|
</script>
|
|
|
|
<template>
|
|
<div ref="containerRef" class="page">
|
|
<PageBackground />
|
|
<HeroSection />
|
|
<SectionDivider />
|
|
<LazyScreenshotsSection />
|
|
<SectionDivider :flip="true" />
|
|
<LazyDownloadSection />
|
|
<SectionDivider />
|
|
<LazyComparisonSection />
|
|
<SectionDivider :flip="true" />
|
|
<LazyPricingSection />
|
|
<SectionDivider />
|
|
<LazyFAQSection />
|
|
<!-- <LazyFeaturesSection /> -->
|
|
<!-- <LazyTestimonialsSection /> -->
|
|
</div>
|
|
</template>
|