start video streaming

This commit is contained in:
Chris Kruining 2025-04-02 22:57:45 +02:00
parent 4b51fbc908
commit 445fde7b6b
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
15 changed files with 448 additions and 225 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}`}>Watch now</a>
<a href={`/watch/${props.entry.id}`}>Watch now</a>
</main>
</div>
);