2020-05-06 05:09:27 +00:00
|
|
|
<template>
|
|
|
|
<div class="home">
|
2022-11-20 10:12:07 +00:00
|
|
|
<div class="d-flex justify-content-center">
|
2021-08-29 12:18:56 +00:00
|
|
|
<bot-list />
|
|
|
|
</div>
|
2021-08-29 08:29:53 +00:00
|
|
|
<hr />
|
2020-12-29 15:17:05 +00:00
|
|
|
<!-- <img alt="Freqtrade logo" src="../assets/freqtrade-logo.png" width="450px" class="my-5" /> -->
|
2022-07-09 18:26:04 +00:00
|
|
|
<div title="Freqtrade logo" class="logo-svg my-5 mx-auto" />
|
2020-05-06 05:09:27 +00:00
|
|
|
<div>
|
2020-05-18 19:55:14 +00:00
|
|
|
<h1>Welcome to the Freqtrade UI</h1>
|
2020-05-06 05:09:27 +00:00
|
|
|
</div>
|
2020-05-27 18:13:25 +00:00
|
|
|
<div>This page allows you to control your trading bot.</div>
|
|
|
|
<br />
|
|
|
|
<p>
|
|
|
|
If you need any help, please refer to the
|
|
|
|
<a href="https://www.freqtrade.io/en/latest/">Freqtrade Documentation</a>.
|
|
|
|
</p>
|
2020-08-18 05:14:07 +00:00
|
|
|
|
|
|
|
<p>Have fun - <i>wishes you the Freqtrade team</i></p>
|
2020-05-06 05:09:27 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2020-09-08 09:53:34 +00:00
|
|
|
<script lang="ts">
|
2022-07-07 18:44:19 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2020-05-06 05:09:27 +00:00
|
|
|
|
2021-08-29 08:29:53 +00:00
|
|
|
import BotList from '@/components/BotList.vue';
|
|
|
|
|
2022-04-16 18:29:53 +00:00
|
|
|
export default defineComponent({
|
|
|
|
name: 'Home',
|
2021-08-29 08:29:53 +00:00
|
|
|
components: { BotList },
|
2022-04-16 18:29:53 +00:00
|
|
|
});
|
2020-05-06 05:09:27 +00:00
|
|
|
</script>
|
|
|
|
|
2021-05-24 13:25:48 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-05-06 17:38:52 +00:00
|
|
|
.home {
|
|
|
|
margin-top: 1.5em;
|
|
|
|
}
|
2020-12-29 15:17:05 +00:00
|
|
|
.logo-svg {
|
|
|
|
-webkit-mask: url(../assets/freqtrade-logo-mask.png) no-repeat center;
|
2021-05-24 13:25:48 +00:00
|
|
|
-webkit-mask-size: 240px 240px;
|
2020-12-29 15:17:05 +00:00
|
|
|
mask: url(../assets/freqtrade-logo-mask.png) no-repeat center;
|
|
|
|
mask-size: contain;
|
|
|
|
width: 250px;
|
|
|
|
height: 250px;
|
|
|
|
}
|
2020-05-06 17:38:52 +00:00
|
|
|
</style>
|