Files
einvoice/src/pages/login.astro
2025-08-12 07:19:52 +08:00

13 lines
347 B
Plaintext

---
import Layout from '@/layouts/PageLayout.astro';
import LoginClient from '@/components/LoginClient';
// The 'client:only' directive ensures the React component only runs in the browser.
---
<Layout title="Login Page">
<main class="flex min-h-screen items-center justify-center p-4">
<LoginClient client:only="react" />
</main>
</Layout>