Small UI changes
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
---
|
||||
import "../styles/global.css";
|
||||
import Navigation from "../components/Navigation.astro";
|
||||
|
||||
interface Props {
|
||||
title?: string;
|
||||
@ -21,6 +22,7 @@ const { title } = Astro.props;
|
||||
<title>{title || "Ixabatasha"}</title>
|
||||
</head>
|
||||
<body class="flex items-center justify-center min-h-screen">
|
||||
<Navigation />
|
||||
<slot />
|
||||
</body>
|
||||
</html>
|
@ -1,6 +1,7 @@
|
||||
---
|
||||
import "../styles/global.css";
|
||||
import AuthLayout from "./AuthLayout.astro";
|
||||
import Navigation from "../components/Navigation.astro";
|
||||
|
||||
interface Props {
|
||||
title?: string;
|
||||
@ -18,12 +19,16 @@ const { title } = Astro.props;
|
||||
rel="icon"
|
||||
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>"
|
||||
/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap" rel="stylesheet">
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>{title || "Ixabatasha"}</title>
|
||||
</head>
|
||||
<body class="flex items-center justify-center min-h-screen">
|
||||
<AuthLayout title={title}>
|
||||
<slot />
|
||||
</AuthLayout>
|
||||
<body>
|
||||
<Navigation />
|
||||
<div class="flex items-center justify-center min-h-screen">
|
||||
<AuthLayout title={title}>
|
||||
<slot />
|
||||
</AuthLayout>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user