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": {
"timestamp": "2025-12-21T23:04:42.523116+00:00",
"session_id": "019b4325-bfcd-7a43-bed2-90e50260dd9f",
"last_entry_timestamp": "2025-12-21T23:04:39.775Z"
"timestamp": "2025-12-21T23:12:34.993938+00:00",
"session_id": "60ef8f57-a5e4-4edb-a61d-0a4778a6de32",
"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="text-center">
<p className="text-2xl font-medium">Streaming soon</p>
<a
href="https://nikiv.dev"
target="_blank"
rel="noopener noreferrer"
className="mt-4 inline-block text-lg text-neutral-400 underline hover:text-white transition-colors"
>
nikiv.dev
</a>
{username === "nikiv" ? (
<a
href="https://nikiv.dev"
target="_blank"
rel="noopener noreferrer"
className="text-4xl font-medium text-white hover:text-neutral-300 transition-colors"
>
nikiv.dev
</a>
) : (
<p className="text-2xl font-medium text-neutral-400">
Not streaming
</p>
)}
</div>
</div>
)}