Small UI changes

This commit is contained in:
2025-02-24 20:56:59 -06:00
parent 03a08a74df
commit df438ec702
9 changed files with 655 additions and 718 deletions

View File

@ -1,5 +1,12 @@
---
import "../styles/global.css";
import AuthLayout from "./AuthLayout.astro";
interface Props {
title?: string;
}
const { title } = Astro.props;
---
<!doctype html>
@ -12,9 +19,11 @@ import "../styles/global.css";
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>❤️</text></svg>"
/>
<meta name="generator" content={Astro.generator} />
<title>Ixabatasha</title>
<title>{title || "Ixabatasha"}</title>
</head>
<body class="flex items-center justify-center min-h-screen">
<slot />
<AuthLayout title={title}>
<slot />
</AuthLayout>
</body>
</html>