Small UI changes
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user