Fixes the copy on new sessions, some additional styling work

This commit is contained in:
2025-06-28 17:48:56 -07:00
parent c00eb1d965
commit 6ce462a77d
20 changed files with 268 additions and 91 deletions

View File

@@ -5,9 +5,9 @@ import type { Npc } from "@/lib/types";
*/
export const NpcPrintRow = ({ npc }: { npc: Npc }) => {
return (
<li className="">
<div className="">
<h4>{npc.data.name}</h4>
<p>{npc.data.description}</p>
</li>
</div>
);
};