feat(onboarding): add conversational ChatOnboarding component

This commit is contained in:
2026-02-28 22:06:15 +01:00
parent 8301803a6f
commit 0ce9d546cf
9 changed files with 870 additions and 123 deletions
+9
View File
@@ -0,0 +1,9 @@
export default function UserMessage({ text }) {
return (
<div className="chat-message user">
<div className="chat-bubble">
{text}
</div>
</div>
)
}