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

@@ -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>
)}