-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreenshot.html
More file actions
217 lines (213 loc) Β· 6.68 KB
/
screenshot.html
File metadata and controls
217 lines (213 loc) Β· 6.68 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
padding: 20px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #0f172a;
color: #f1f5f9;
}
.screenshot-container {
max-width: 1200px;
margin: 0 auto;
}
.header {
background: #1e293b;
border-radius: 20px;
padding: 40px;
text-align: center;
border: 1px solid #334155;
position: relative;
margin-bottom: 30px;
}
.header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 20px 20px 0 0;
}
.logo {
font-size: 48px;
margin-bottom: 10px;
}
h1 {
font-size: 2.5rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin: 10px 0;
}
.badge {
display: inline-block;
background: rgba(16, 185, 129, 0.1);
padding: 8px 16px;
border-radius: 20px;
border: 1px solid #10b981;
color: #10b981;
margin-top: 10px;
}
.subtitle {
color: #94a3b8;
margin-top: 10px;
}
.tabs {
background: #1e293b;
padding: 10px;
border-radius: 15px;
display: flex;
gap: 10px;
margin-bottom: 30px;
border: 1px solid #334155;
}
.tab {
flex: 1;
padding: 15px 20px;
border-radius: 10px;
text-align: center;
color: #94a3b8;
}
.tab.active {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.content {
background: #1e293b;
border-radius: 20px;
padding: 30px;
border: 1px solid #334155;
}
.content h2 {
font-size: 2rem;
margin-bottom: 10px;
}
.description {
color: #94a3b8;
margin-bottom: 25px;
}
.chat-container {
background: #0f172a;
border-radius: 15px;
border: 1px solid #334155;
overflow: hidden;
}
.chat-messages {
padding: 20px;
min-height: 300px;
}
.message {
display: flex;
gap: 12px;
margin-bottom: 15px;
}
.message.user {
flex-direction: row-reverse;
}
.avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
flex-shrink: 0;
}
.message.user .avatar {
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.message-content {
background: #1e293b;
padding: 12px 16px;
border-radius: 15px;
border: 1px solid #334155;
max-width: 60%;
}
.message.user .message-content {
background: #6366f1;
}
.chat-input-area {
display: flex;
gap: 10px;
padding: 15px;
background: #1e293b;
border-top: 1px solid #334155;
}
.chat-input {
flex: 1;
padding: 12px 16px;
background: #0f172a;
border: 1px solid #334155;
border-radius: 10px;
color: #94a3b8;
}
.send-btn {
padding: 12px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
border-radius: 10px;
color: white;
font-size: 1.1rem;
}
.footer {
text-align: center;
margin-top: 30px;
color: #94a3b8;
padding: 20px;
}
</style>
</head>
<body>
<div class="screenshot-container">
<div class="header">
<div class="logo">π€</div>
<h1>AI Assistant Hub</h1>
<div class="badge">β Autonomously Developed</div>
<p class="subtitle">Powered by GitHub Copilot SDK Agent</p>
</div>
<div class="tabs">
<div class="tab active">π¬ Smart Chat</div>
<div class="tab">π Text Analysis</div>
<div class="tab">β¨ Content Generator</div>
<div class="tab">βΉοΈ About</div>
</div>
<div class="content">
<h2>π¬ AI Smart Chat</h2>
<p class="description">Have a conversation with our AI assistant. Ask questions, get insights, or just chat!</p>
<div class="chat-container">
<div class="chat-messages">
<div class="message">
<div class="avatar">π€</div>
<div class="message-content">Hello! I'm your AI assistant. How can I help you today?</div>
</div>
<div class="message user">
<div class="avatar">π€</div>
<div class="message-content">Tell me about artificial intelligence</div>
</div>
<div class="message">
<div class="avatar">π€</div>
<div class="message-content">Artificial Intelligence is fascinating! It's transforming how we interact with technology through machine learning, natural language processing, and computer vision.</div>
</div>
<div class="message user">
<div class="avatar">π€</div>
<div class="message-content">That's really interesting!</div>
</div>
</div>
<div class="chat-input-area">
<input class="chat-input" placeholder="Type your message..." />
<button class="send-btn">βοΈ</button>
</div>
</div>
</div>
<div class="footer">
π€ Autonomously developed by GitHub Copilot SDK Agent
</div>
</div>
</body>
</html>