mirror of
https://github.com/ClovertaTheTrilobita/SanYeCao-blog.git
synced 2026-04-01 17:50:13 +00:00
38 lines
843 B
Text
38 lines
843 B
Text
---
|
|
import BaseLayout from "@/layouts/BaseLayout.astro";
|
|
import "@/styles/global.css";
|
|
---
|
|
|
|
<BaseLayout
|
|
pageTitle="404 Not Found"
|
|
description="Sorry, the page doesn't exists"
|
|
>
|
|
<div class="not-found">
|
|
<img src="/images/marisa.png" alt="Marisa" class="marisa-404" />
|
|
<div class="hint">
|
|
<h3>对不起,您请求的页面不存在哦。</h3>
|
|
<h3>Sorry, the page you are requesting for doesn't exists.</h3>
|
|
</div>
|
|
</div>
|
|
</BaseLayout>
|
|
|
|
<style>
|
|
.not-found {
|
|
min-height: 70vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.marisa-404 {
|
|
width: 30%;
|
|
display: block;
|
|
}
|
|
|
|
.hint {
|
|
text-align: center;
|
|
}
|
|
</style>
|