19 lines
368 B
Plaintext
19 lines
368 B
Plaintext
---
|
|
// MainLayout.astro
|
|
import "../styles/global.css";
|
|
|
|
const { children } = Astro.props;
|
|
---
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Prompt Catalog</title>
|
|
</head>
|
|
|
|
<body class="font-sans antialiased bg-gray-800 text-gray-100">
|
|
<slot />
|
|
</body>
|
|
</html>
|