summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/contact.vue
blob: bcdcf4327552618652b8c14365d1c39484be0d2d (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
<!--
SPDX-FileCopyrightText: syuilo and misskey-project
SPDX-License-Identifier: AGPL-3.0-only
-->

<template>
<MkStickyContainer>
	<template #header><MkPageHeader/></template>
	<MkSpacer :contentMax="600" :marginMin="20">
		<div class="_gaps">
			<MkKeyValue>
				<template #key>{{ i18n.ts.inquiry }}</template>
				<template #value>
					<MkLink :url="instance.inquiryUrl" target="_blank">{{ instance.inquiryUrl }}</MkLink>
				</template>
			</MkKeyValue>

			<MkKeyValue>
				<template #key>{{ i18n.ts.email }}</template>
				<template #value>
					<div>{{ instance.maintainerEmail }}</div>
				</template>
			</MkKeyValue>
		</div>
	</MkSpacer>
</MkStickyContainer>
</template>

<script lang="ts" setup>
import { i18n } from '@/i18n.js';
import { definePageMetadata } from '@/scripts/page-metadata.js';
import { instance } from '@/instance.js';
import MkKeyValue from '@/components/MkKeyValue.vue';
import MkLink from '@/components/MkLink.vue';

definePageMetadata(() => ({
	title: i18n.ts.inquiry,
	icon: 'ti ti-help-circle',
}));
</script>