2020-11-28 03:52:57 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<section class="_section">
|
|
|
|
<div class="_content" style="text-align: center;">
|
2021-03-06 05:23:59 +01:00
|
|
|
<img src="/static-assets/icons/512.png" alt="" style="display: block; width: 100px; margin: 0 auto; border-radius: 16px;"/>
|
2020-11-28 03:52:57 +01:00
|
|
|
<div style="margin-top: 0.75em;">Misskey</div>
|
|
|
|
<div style="opacity: 0.5;">v{{ version }}</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { faInfoCircle } from '@fortawesome/free-solid-svg-icons';
|
2021-03-23 09:30:14 +01:00
|
|
|
import { version } from '@client/config';
|
2021-04-10 05:54:12 +02:00
|
|
|
import * as symbols from '@client/symbols';
|
2020-11-28 03:52:57 +01:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: {
|
2020-11-28 03:52:57 +01:00
|
|
|
title: 'Misskey',
|
|
|
|
icon: null
|
|
|
|
},
|
|
|
|
version,
|
|
|
|
faInfoCircle
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|