Basic login

This commit is contained in:
2026-01-03 00:24:24 +02:00
parent 978965b282
commit 927a6ccd80
9 changed files with 119 additions and 226 deletions
+8 -10
View File
@@ -1,3 +1,9 @@
---
import '../styles/app.css'
const {title} = Astro.props
---
<!doctype html>
<html lang="en">
<head>
@@ -5,18 +11,10 @@
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>Astro Basics</title>
<title>Subtle Storm</title>
</head>
<body>
<h1>{title}</h1>
<slot />
</body>
</html>
<style>
html,
body {
margin: 0;
width: 100%;
height: 100%;
}
</style>