21 lines
414 B
Vue
21 lines
414 B
Vue
<script setup lang="ts">
|
|
import Background from "./Background.vue";
|
|
import Buttons from "./Buttons.vue";
|
|
|
|
const store = useContactStore();
|
|
</script>
|
|
|
|
<template>
|
|
<Background />
|
|
|
|
<Buttons />
|
|
|
|
<CommonBars
|
|
:title="$t('contact.title')"
|
|
:opacity="
|
|
store.isIntro ? store.intro.stage3Opacity : store.outro.stage2Opacity
|
|
"
|
|
:y-offset="store.isIntro ? store.intro.barOffsetY : 0"
|
|
/>
|
|
</template>
|