-
Tor-Einar Skog authoredTor-Einar Skog authored
Welcome.vue 1.46 KiB
<!--
Copyright (c) 2022 NIBIO <http://www.nibio.no/>.
This file is part of VIPSObservationApp.
VIPSObservationApp is free software: you can redistribute it and/or modify
it under the terms of the NIBIO Open Source License as published by
NIBIO, either version 1 of the License, or (at your option) any
later version.
VIPSObservationApp is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
NIBIO Open Source License for more details.
You should have received a copy of the NIBIO Open Source License
along with VIPSObservationApp. If not, see <http://www.nibio.no/licenses/>.
Author: Bhabesh Bhabani Mukhopadhyay
Author: Tor-Einar Skog <tor-einar.skog@nibio.no>
Dated : 19-Aug-2021
-->
<template>
<div class="main">
<center>
<p><img src="../assets/welcome_illus.png" style="width: 70%; margin-bottom: 50px;" /></p>
<h2>{{$t("welcome.header.text")}}</h2>
<p v-html="$t('welcome.body.text')"></p>
<footer v-html="$t('welcome.footer.text')" />
</center>
</div>
</template>
<style scoped>
.main {
padding-right: 15px;
padding-left: 15px;
}
footer {
margin-top: 55px;
font-size: small;
background-color: #3d8052;
color: white;
font-weight: bold;
padding: 15px;
}
</style>
<script>
export default ({
data() {
return {
}
},
methods: {
},
mounted() {
}
})
</script>