Files
codey.lol/src/pages/login.astro

12 lines
295 B
Plaintext
Raw Normal View History

2025-07-31 19:28:59 -04:00
---
2025-08-09 07:10:04 -04:00
import LoginPage from '@/components/Login.jsx';
2025-07-31 19:28:59 -04:00
import Base from "@/layouts/Base.astro";
import Root from "@/components/AppLayout.jsx";
---
<Base>
<section>
<div class="prose prose-neutral dark:prose-invert">
<Root child="LoginPage" client:only="react" >
2025-07-31 19:28:59 -04:00
</Root>
</section>
2025-08-09 07:10:04 -04:00
</Base>