35 lines
896 B
Plaintext
35 lines
896 B
Plaintext
---
|
|
import "../styles/global.css";
|
|
import AuthLayout from "./AuthLayout.astro";
|
|
import Navigation from "../components/Navigation.astro";
|
|
|
|
interface Props {
|
|
title?: string;
|
|
}
|
|
|
|
const { title } = Astro.props;
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link
|
|
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>
|
|
<Navigation />
|
|
<div class="flex items-center justify-center min-h-screen">
|
|
<AuthLayout title={title}>
|
|
<slot />
|
|
</AuthLayout>
|
|
</div>
|
|
</body>
|
|
</html>
|