mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-16 22:39:00 +01:00
24 lines
585 B
Vue
24 lines
585 B
Vue
<!--
|
|
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>{{ instance.maintainerEmail }}</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';
|
|
|
|
definePageMetadata(() => ({
|
|
title: i18n.ts.inquiry,
|
|
icon: 'ph-question ph-bold ph-lg',
|
|
}));
|
|
</script>
|