- Add Next.js app structure with base configs, linting, and formatting - Implement LiveKit Meet page, types, and utility functions - Add Docker, Compose, and deployment scripts for backend and token server - Provide E2E and smoke test scaffolding with Puppeteer and Playwright helpers - Include CSS modules and global styles for UI - Add postMessage and studio integration utilities - Update package.json with dependencies and scripts for development and testing
13 lines
282 B
HTML
13 lines
282 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Broadcast Panel - Test</title>
|
|
</head>
|
|
<body>
|
|
<h1>Broadcast Panel Test Page</h1>
|
|
<a id="enter-studio" href="#" onclick="window.open('about:blank','studio')">Entrar al estudio</a>
|
|
</body>
|
|
</html>
|
|
|