ai-voice-secretary / index.html
abdullah-khaled's picture
Improve the code and UI for easy usage
6c7da6d
raw
history blame contribute delete
779 Bytes
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI Voice Secretary</title>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='16' fill='%23006DFF'/%3E%3Ctext x='16' y='22' font-size='16' text-anchor='middle' fill='white' font-family='Arial'%3E%F0%9F%8E%A4%3C/text%3E%3C/svg%3E"/> <script type="module" src="/src/main.jsx"></script>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = { darkMode: 'class' };
</script>
</head>
<body class="bg-gray-100 dark:bg-gray-900 font-sans">
<div id="root"></div>
</body>
</html>