21 lines
655 B
HTML
21 lines
655 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Electron Tray Demo</title>
|
|
<style>
|
|
body { font-family: Inter, system-ui, Arial, sans-serif; margin: 24px; }
|
|
h1 { margin-bottom: 8px; }
|
|
.card { border: 1px solid #ddd; border-radius: 12px; padding: 16px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Electron Tray Demo</h1>
|
|
<div class="card">
|
|
<p>This is a test desktop window for the Electron tray application.</p>
|
|
<p>Close window to hide to tray, use tray menu to show it again.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|