feature: Layout functional

This commit is contained in:
Keith Solomon
2025-07-16 10:27:39 -05:00
parent 559cbbe0be
commit 4f81592d4f
6 changed files with 9 additions and 22 deletions

View File

@@ -10,16 +10,9 @@ const { children } = Astro.props;
<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 class="font-sans antialiased bg-gray-500 text-gray-100">
<slot />
</body>
</html>