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">
|
2025-08-09 07:10:04 -04:00
|
|
|
<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>
|