17 lines
462 B
HTML
17 lines
462 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>html-video · studio-next (hf integration demo)</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<style>
|
|
html, body, #root { margin: 0; height: 100%; background: #0e0e10; color: #fafafa;
|
|
font-family: ui-sans-serif, system-ui, sans-serif; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|