-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
43 lines (42 loc) · 1.77 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Terminal</title>
<link rel="stylesheet" href="styles.css">
<script src="qrc:///qtwebchannel/qwebchannel.js"></script>
</head>
<body>
<div class="container">
<div class="top-bar">
<div class="app-info">
<img src="logo.png" alt="Deep Shell" class="app-logo">
<span class="app-name"> Deep Shell </span>
</div>
<button class="reset-button" title="Reset Terminal">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9a9 9 0 00-9-9m9 9h-9"/>
</svg>
</button>
</div>
<div class="chat-panel">
<div class="messages-container">
<div class="message assistant">
👋 Hello! How can I assist you with the terminal today?
</div>
</div>
<div class="message-input">
<input type="text" id="chatInput" placeholder="Ask me anything about the terminal...">
<button class="send-button">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m22 2-7 20-4-9-9-4Z"></path>
<path d="M22 2 11 13"></path>
</svg>
</button>
</div>
</div>
</div>
<script src="script.js" defer></script>
</body>
</html>