留言页搞定
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-04-01 01:45:07 +08:00
parent 93b2853d30
commit a69d3f81ce
4 changed files with 329 additions and 26 deletions

View File

@ -10,7 +10,7 @@ const { title = '小帕的小窝' } = Astro.props
---
<BaseLayout title={title}>
<div class="nav-container">
<div class="nav-container" transition:persist>
<nav>
<ul class="left">
<li class="website-logo">
@ -33,7 +33,7 @@ const { title = '小帕的小窝' } = Astro.props
<ul class="right">Hello!</ul>
</nav>
</div>
<main>
<main transition:animate="slide">
<slot />
</main>
</BaseLayout>