mirror of
https://github.com/yusufipk/YTChatHub.git
synced 2026-09-11 19:06:14 +00:00
19 lines
523 B
TypeScript
19 lines
523 B
TypeScript
import Link from 'next/link';
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<main className="landing">
|
|
<section className="panel">
|
|
<h1>YouTube Chat Client</h1>
|
|
<p>
|
|
Launch the dashboard to monitor live chat and control the overlay that feeds OBS.
|
|
</p>
|
|
<Link className="primary" href="/dashboard">
|
|
Open Dashboard
|
|
</Link>
|
|
<p className="muted">Overlay preview lives at /overlay for the OBS browser source.</p>
|
|
</section>
|
|
</main>
|
|
);
|
|
}
|