Update streaming placeholder to display a link for 'nikiv' and a message for others

This commit is contained in:
Nikita
2025-12-21 15:15:14 -08:00
parent f188310411
commit e37e89dc4d
2 changed files with 17 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
{ {
"last_commit": { "last_commit": {
"timestamp": "2025-12-21T23:04:42.523116+00:00", "timestamp": "2025-12-21T23:12:34.993938+00:00",
"session_id": "019b4325-bfcd-7a43-bed2-90e50260dd9f", "session_id": "60ef8f57-a5e4-4edb-a61d-0a4778a6de32",
"last_entry_timestamp": "2025-12-21T23:04:39.775Z" "last_entry_timestamp": "2025-12-21T23:12:32.638Z"
} }
} }

View File

@@ -193,15 +193,20 @@ function StreamPage() {
) : ( ) : (
<div className="flex h-full w-full items-center justify-center text-white"> <div className="flex h-full w-full items-center justify-center text-white">
<div className="text-center"> <div className="text-center">
<p className="text-2xl font-medium">Streaming soon</p> {username === "nikiv" ? (
<a <a
href="https://nikiv.dev" href="https://nikiv.dev"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
className="mt-4 inline-block text-lg text-neutral-400 underline hover:text-white transition-colors" className="text-4xl font-medium text-white hover:text-neutral-300 transition-colors"
> >
nikiv.dev nikiv.dev
</a> </a>
) : (
<p className="text-2xl font-medium text-neutral-400">
Not streaming
</p>
)}
</div> </div>
</div> </div>
)} )}