feat: stabilization + recipe edit/create UI

This commit is contained in:
clawd
2026-02-18 09:55:39 +00:00
commit ee452efa6a
75 changed files with 15160 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { EmptyState } from '../components/ui/EmptyState'
export function PlaceholderPage({ title, icon }: { title: string; icon: string }) {
return (
<div className="p-4">
<EmptyState icon={icon} title={title} description="Kommt bald!" />
</div>
)
}