aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pages/contact.astro
diff options
context:
space:
mode:
authorYasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com>2026-06-18 23:19:10 +0900
committerYasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com>2026-06-18 23:19:10 +0900
commit5bc1e63756cae6974430f1e6cf1a4d5e88f5b9cc (patch)
tree46ab1a541403d680fe1719da941d7702159fd453 /src/pages/contact.astro
Initial commit
Diffstat (limited to 'src/pages/contact.astro')
-rw-r--r--src/pages/contact.astro38
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 &amp; 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>