update website to use new design

This commit is contained in:
kritzl 2026-09-11 12:22:29 +02:00
commit 8f593bc741
Signed by: kritzl
SSH key fingerprint: SHA256:5BmINP9VjZWaUk5Z+2CTut1KFhwLtd0ZynMekKbtViM
12 changed files with 4121 additions and 131 deletions

View file

@ -1,29 +1,31 @@
---
import "../styles/global.css";
import "../styles/global.css"
import Navbar from "../components/Navbar.astro"
const props = Astro.props;
const props = Astro.props
---
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" />
<meta name="generator" content={Astro.generator} />
<title>DIDAYS 2026{props.title ? ` | ${props.title}` : ''}</title>
</head>
<body>
<slot />
</body>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg"/>
<link rel="icon" href="/favicon.ico"/>
<meta name="generator" content={Astro.generator}/>
<title>DIDAYS 2026{props.title ? ` | ${props.title}` : ""}</title>
</head>
<body>
<Navbar/>
<slot/>
</body>
</html>
<style>
html,
body {
margin: 0;
width: 100%;
height: 100%;
}
html,
body {
margin: 0;
width: 100%;
height: 100%;
}
</style>