Update commit checkpoints with new timestamp and session ID; modify stream placeholder to display "stream soon" and adjust link text based on username.

This commit is contained in:
Nikita
2025-12-21 18:36:03 -08:00
parent 01102c6817
commit 3d6709e5c5
2 changed files with 14 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
{
"last_commit": {
"timestamp": "2025-12-22T02:15:31.164777+00:00",
"session_id": "019b43d6-7d65-7750-9f2a-d85aa2642074",
"last_entry_timestamp": "2025-12-22T02:15:26.603Z"
"timestamp": "2025-12-22T02:34:08.927463+00:00",
"session_id": "019b43e7-d67f-7913-8869-c71b4462765a",
"last_entry_timestamp": "2025-12-22T02:34:05.739Z"
}
}

View File

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