26 lines
547 B
Plaintext
26 lines
547 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>
|
|
<!-- <link href="/css/tailwind.css" rel="stylesheet" /> -->
|
|
|
|
<script type="module">
|
|
import Alpine from 'alpinejs'
|
|
window.Alpine = Alpine
|
|
Alpine.start()
|
|
</script>
|
|
</head>
|
|
|
|
<body class="font-sans antialiased bg-gray-50">
|
|
{children}
|
|
</body>
|
|
</html>
|