ca0ca37adc
Vite + React + TS + Tailwind v4, installable PWA. Join-pod UI that fetches a LiveKit token from the backend, connects to the pod room, and publishes screen + mic so PodMan can watch. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
14 lines
343 B
HTML
14 lines
343 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#0b0f17" />
|
|
<title>PodMan</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|