vibetunnel/tauri/src/welcome.html
2025-06-23 14:58:10 +02:00

36 lines
No EOL
966 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to VibeTunnel</title>
<style>
/* Base styles before component loads */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
background-color: #1c1c1e;
color: #f5f5f7;
overflow: hidden;
-webkit-user-select: none;
user-select: none;
}
@media (prefers-color-scheme: light) {
body {
background-color: #ffffff;
color: #1d1d1f;
}
}
</style>
</head>
<body>
<welcome-app></welcome-app>
<script type="module" src="./components/welcome-app.js"></script>
</body>
</html>