diff options
| author | Yasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com> | 2026-06-19 23:35:46 +0900 |
|---|---|---|
| committer | Yasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com> | 2026-06-19 23:35:46 +0900 |
| commit | da4e7150af05123ff258feaddc980e5db6c03474 (patch) | |
| tree | ac8f92e4367420e42e079fceec63fbb7cd82460e /src/pages/contact.astro | |
| parent | 9294d4bab547a07eb17ed0ae28058462b7beaeca (diff) | |
「」を含む太字を <strong> タグに修正
Diffstat (limited to 'src/pages/contact.astro')
| -rw-r--r-- | src/pages/contact.astro | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/pages/contact.astro b/src/pages/contact.astro new file mode 100644 index 0000000..00aa3c0 --- /dev/null +++ b/src/pages/contact.astro @@ -0,0 +1,38 @@ +--- +import StarlightPage from "@astrojs/starlight/components/StarlightPage.astro"; +--- + +<StarlightPage frontmatter={{ title: "コンタクト" }}> + <h2>お問い合わせ</h2> + <p> + 小平市を更によくするために皆さんの声をお寄せください。ご意見・ご質問・ご提案等いつでもお気軽にご連絡下さい。 + </p> + + <div + style="background:var(--sl-color-accent-low);border:1px solid var(--sl-color-accent);border-radius:8px;padding:1.5rem;margin:2rem 0" + > + <h3 style="margin-top:0">連絡先</h3> + <table style="border:none;box-shadow:none"> + <tbody> + <tr> + <td style="font-weight:600;padding-right:1rem;white-space:nowrap">Email</td> + <td><a href="mailto:yohei@yasutakeyohei.com">yohei@yasutakeyohei.com</a></td> + </tr> + <tr> + <td style="font-weight:600;padding-right:1rem;white-space:nowrap">TEL & FAX</td> + <td>042-313-6780</td> + </tr> + <tr> + <td style="font-weight:600;padding-right:1rem;white-space:nowrap">住所</td> + <td>〒187-0001 小平市大沼町 1-2-1-207</td> + </tr> + </tbody> + </table> + </div> + + <hr style="border-color:var(--sl-color-gray-5);margin:2rem 0" /> + + <p style="text-align:center"> + <a href="/">← トップページに戻る</a> + </p> +</StarlightPage> |
