added contact page, fixed image size in kosen-x, improved Dropdown component
This commit is contained in:
41
pages/contact.vue
Normal file
41
pages/contact.vue
Normal file
@@ -0,0 +1,41 @@
|
||||
<script setup lang="ts">
|
||||
import SiteInfo from "~/assets/siteinfo.json";
|
||||
const WebsiteMetaData = generateSeoMeta(
|
||||
"Contact SERA",
|
||||
`${SiteInfo.clubNameAbbreviation}へのお問い合わせ`,
|
||||
"/sera-logo-text.svg"
|
||||
);
|
||||
|
||||
useSeoMeta(WebsiteMetaData);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<PageTop text="Contact" image-path="/images/page-top.jpg" />
|
||||
<PankuzuList
|
||||
:currentPageName="`Contact ${SiteInfo.clubNameAbbreviation}`"
|
||||
/>
|
||||
<main>
|
||||
<section>
|
||||
<h1>{{ SiteInfo.clubNameAbbreviation }}へのお問い合わせ</h1>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<iframe
|
||||
src="https://docs.google.com/forms/d/e/1FAIpQLSd2a8WMfu4v5potmKbwIPJ7fKfL2xpVhaTN6ys2J1A-dRU3sw/viewform?embedded=true"
|
||||
width="100%"
|
||||
height="950"
|
||||
frameborder="0"
|
||||
marginheight="0"
|
||||
marginwidth="0"
|
||||
>読み込んでいます…</iframe
|
||||
>
|
||||
</section>
|
||||
</main>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
main {
|
||||
width: clamp(300px, 70%, 36rem);
|
||||
margin: auto;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user