All checks were successful
Docker Deploy / build-and-push (push) Successful in 1m10s
10 lines
220 B
Text
10 lines
220 B
Text
---
|
|
import Layout from "../layouts/Layout.astro";
|
|
import AuthWrapper from "../components/auth/AuthWrapper";
|
|
---
|
|
|
|
<Layout>
|
|
<main class="min-h-screen">
|
|
<AuthWrapper client:only="react" />
|
|
</main>
|
|
</Layout>
|