diff --git a/client/viewer.tsx b/client/viewer.tsx index a06208f..2c48d1b 100644 --- a/client/viewer.tsx +++ b/client/viewer.tsx @@ -64,7 +64,10 @@ const main = async () => { ); - if (video.title) player.append(

{video.title}

); + if (video.title) { + player.append(

{video.title}

); + document.title = `${video.title} | video.cerulea.blue`; + } if (video.description) player.append(

{video.description}

); };