Files
chronus/src/layouts/Layout.astro
Atridad Lahiji db1d180afc
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m52s
Removed footer
2026-01-18 01:43:21 -07:00

29 lines
680 B
Plaintext

---
import '../styles/global.css';
import { ClientRouter } from "astro:transitions";
interface Props {
title: string;
}
const { title } = Astro.props;
---
<!doctype html>
<html lang="en" data-theme="dark">
<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>
<ClientRouter />
</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>