13 lines
347 B
Plaintext
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>
|