feature: Scaffold project

This commit is contained in:
Keith Solomon
2025-07-16 09:26:49 -05:00
parent ed5c14318f
commit 559cbbe0be
18 changed files with 5877 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
---
// 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>