31 lines
759 B
Plaintext
31 lines
759 B
Plaintext
---
|
|
import '../styles/global.css';
|
|
|
|
interface Props {
|
|
title: string;
|
|
}
|
|
|
|
const { title } = Astro.props;
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="description" content="Chronus Time Tracking" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>{title}</title>
|
|
<script is:inline>
|
|
const theme = localStorage.getItem('theme') || 'sunset';
|
|
document.documentElement.setAttribute('data-theme', theme);
|
|
</script>
|
|
</head>
|
|
<body class="min-h-screen bg-base-100 text-base-content flex flex-col">
|
|
<div class="flex-1 flex flex-col">
|
|
<slot />
|
|
</div>
|
|
</body>
|
|
</html>
|