astro-ghostcms/.pnpm-store/v3/files/e2/928c8282437d2fc268ab1251dd7...

15 lines
308 B
Plaintext

---
import Navbar from "../components/navbar.astro";
import Layout from "./layout.astro";
---
<Layout>
<Navbar />
<div class="text-center mt-16">
This page is to demonstrate view transitions. <a
href="/"
class="text-blue-500 underline">Click here</a
> to go back.
</div>
</Layout>