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 { Location } from "@/lib/types";
*/
export const LocationPrintRow = ({ location }: { location: Location }) => {
return (
<li>
<div>
<h4>{location.data.name}</h4>
<p>{location.data.description}</p>
</li>
</div>
);
};