enhance(contact): お問い合わせページの画面を変更

iframe単独でスクロールバーを持ってしまい、操作性が悪くなったためリンクに変更
This commit is contained in:
kakkokari-gtyih 2024-03-27 22:34:11 +09:00
parent 16743e301d
commit a41894af6a
2 changed files with 13 additions and 2 deletions

View File

@ -198,6 +198,9 @@ _brandAssets:
_contact:
title: "お問い合わせ"
description: "Misskey Projectへのお問い合わせはこちらから"
form: "こちらのフォームからご回答ください。"
formGoogleAccountRequired: "現在、スパム対策のため、お問い合わせの送信にはGoogleアカウントが必要となっております。\nお手数をおかけしますが、ご理解のほどよろしくお願い致します。"
formLink: "フォームへ進む"
_links:
title: "リンク"

View File

@ -17,8 +17,14 @@
</GHero>
<div class="pb-12 lg:mt-12 pt-6 bg-white dark:bg-slate-950">
<div class="container mx-auto max-w-screen-lg px-6 space-y-6 lg:space-y-8">
<div>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSf9hV92NTcfzZnJg_mrB11MINpBFdTf8dzGKAmzX8dvwXwZfw/viewform?embedded=true" width="640" height="1058" frameborder="0" marginheight="0" marginwidth="0">読み込んでいます</iframe>
<div class="bg-gray-100 border-4 border-accent-600 p-4 lg:p-6 rounded-xl space-y-3">
<h2 class="font-bold text-lg lg:text-xl text-center">{{ $t('_contact.form') }}</h2>
<p class="text-center whitespace-pre-wrap">{{ $t('_contact.formGoogleAccountRequired') }}</p>
<div class="text-center">
<GNuxtLink to="https://docs.google.com/forms/d/e/1FAIpQLSf9hV92NTcfzZnJg_mrB11MINpBFdTf8dzGKAmzX8dvwXwZfw/viewform" target="_blank" class="btn btn-primary">
{{ $t('_contact.formLink') }}<ExtIco class="ml-1" />
</GNuxtLink>
</div>
</div>
</div>
</div>
@ -26,6 +32,8 @@
</template>
<script setup lang="ts">
import ExtIco from 'bi/box-arrow-up-right.svg';
const { t } = useI18n();
const route = useRoute();