updated style of list items

This commit is contained in:
Chris Kruining 2025-04-02 20:48:36 +02:00
parent ab8ddaba35
commit 4b51fbc908
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
5 changed files with 34 additions and 10 deletions

View file

@ -10,7 +10,7 @@ export const ListItem: Component<{ entry: Entry }> = (props) => {
<main>
<strong>{props.entry.title}</strong>
<a href={`/content/${props.entry.id}`}>Lets go!</a>
<a href={`/content/${props.entry.id}`}>Watch now</a>
</main>
</div>
);