Scaffold demo-gen-0 Next.js showcase

This commit is contained in:
Alexa Amundson
2025-11-24 02:06:39 -06:00
parent d62a139950
commit c2ce01906a
61 changed files with 774 additions and 6053 deletions

17
app/status/page.tsx Normal file
View File

@@ -0,0 +1,17 @@
import BeaconFeed from '../../components/BeaconFeed';
import { DEFAULT_BEACON_URL } from '../../lib/constants';
export default function StatusPage() {
return (
<div className="space-y-4">
<header className="rounded-2xl border border-white/10 bg-white/5 p-6">
<h1 className="text-3xl font-bold">Real-time Status</h1>
<p className="mt-2 text-white/80">
Connected to <span className="font-semibold text-white">{DEFAULT_BEACON_URL}/stream</span>. Server-Sent Events keep
the capsule feed updated live no client polling.
</p>
</header>
<BeaconFeed />
</div>
);
}