16 lines
411 B
Plaintext
16 lines
411 B
Plaintext
---
|
|
import RootLayout from "../layouts/RootLayout.astro";
|
|
---
|
|
|
|
<RootLayout>
|
|
<div class="h-screen w-full flex justify-center items-center">
|
|
<div class="text-center">
|
|
<h2 class="text-2xl font-bold">404</h2>
|
|
<h3 class="text-lg">Not Found</h3>
|
|
|
|
<p class="mt-5">哎呀~ 你要找的资源不存在呢~</p>
|
|
<a class="link" href="/">返回主页</a>
|
|
</div>
|
|
</div>
|
|
</RootLayout>
|