dcc
2024-06-13 fad052d0879be9d0bf85794ad686d4badaedd864
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<template>
  <div class="ready-bg">
    <h2 class="text-white">{{ t("ready-t2") }}</h2>
    <h5 class="text-white">{{ t("ready-d2") }}</h5>
    <el-button class="blue-middle-btn my-4">{{ t("ready-b2") }}</el-button>
  </div>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
 
const route = useRoute();
const { t } = useI18n();
</script>
<style lang="scss" scoped>
.ready-bg {
  background: url(@/assets/forexImages/ready-bg.png) no-repeat center;
  background-size: auto 100%;
  height: 394px;
  width: 100%;
  display: flex;
  color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
</style>