llm_log_frontend/src/layouts/BaseLayout.astro

21 lines
630 B
Plaintext

---
import '../styles/global.css';
import Sidebar from '../components/Sidebar.astro';
const { title } = Astro.props;
---
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<title>{title}</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.21/dist/katex.min.css">
</head>
<body class="bg-white dark:bg-[#0a0c10] text-gray-900 min-h-screen selection:bg-blue-200 dark:selection:bg-blue-900">
<div class="flex max-w-[1440px] mx-auto">
<Sidebar />
<main class="flex-1 w-full min-w-0 p-8 md:p-12 overflow-x-hidden">
<slot />
</main>
</div>
</body>
</html>