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

@@ -12,15 +12,15 @@ export type Props = {
*/
export const BasicRow = ({ doc, title, description }: Props) => {
return (
<li>
<div>
<Link
to="/document/$documentId"
params={{ documentId: doc.id }}
className="text-lg"
className="text-lg !no-underline text-slate-100 hover:underline hover:text-violet-400"
>
<h4>{title}</h4>
</Link>
{description && <p>{description}</p>}
</li>
</div>
);
};