aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pages/404.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/404.astro
Initial commit
Diffstat (limited to 'src/pages/404.astro')
-rw-r--r--src/pages/404.astro27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/pages/404.astro b/src/pages/404.astro
new file mode 100644
index 0000000..de1cffa
--- /dev/null
+++ b/src/pages/404.astro
@@ -0,0 +1,27 @@
+---
+import StarlightPage from "@astrojs/starlight/components/StarlightPage.astro";
+---
+
+<StarlightPage frontmatter={{ title: "ページが見つかりません" }}>
+ <p style="font-size:1.1rem;color:var(--sl-color-accent-high)">
+ お探しのページは移動したか、存在しません。
+ </p>
+
+ <h2>サイトが新しくなりました</h2>
+ <p>
+ 令和8年6月にサイトをリニューアルしました。そのため、Google検索などから古いアドレスにアクセスされた場合、このページが表示されることがあります。現在表示できないページについては、順次移行を進めていますので、今しばらくお待ちください。
+ </p>
+
+ <h2>よく見られているページ</h2>
+ <ul>
+ <li><a href="/">🏠 トップページ</a></li>
+ <li><a href="/ippan-situmon/">📋 一般質問</a></li>
+ <li><a href="/jisseki/">📂 実績</a></li>
+ <li><a href="/policy/">📝 私の方針</a></li>
+ </ul>
+
+ <h2>サイト内検索</h2>
+ <p>
+ ページ右上の検索バーからキーワードで検索することもできます。
+ </p>
+</StarlightPage>