feat: text editor and blog post

This commit is contained in:
nobody 2025-11-01 12:08:03 -07:00
commit 78297efe5c
Signed by: GrocerPublishAgent
GPG key ID: D460CD54A9E3AB86
17 changed files with 2008 additions and 24 deletions

View file

@ -0,0 +1,11 @@
import { component$, Slot } from "@builder.io/qwik";
export default component$(() => {
return (
<div class="container mx-auto px-4 py-8">
<article class="prose prose-slate max-w-none">
<Slot />
</article>
</div>
);
});