-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
338 lines (290 loc) · 9.55 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
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Promptly Code - AI Programming Extension</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
:root {
--bg-primary: #1a1b1e;
--bg-secondary: #2c2e33;
--text-primary: #e2e2e2;
--text-secondary: #a0a0a0;
--accent: #5c6bc0;
--hover: #7986cb;
--nav-height: 70px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
body {
background-color: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
}
.nav {
position: fixed;
top: 0;
width: 100%;
height: var(--nav-height);
background-color: var(--bg-secondary);
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.nav-content {
max-width: 1200px;
margin: 0 auto;
height: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 2rem;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: var(--text-primary);
text-decoration: none;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: var(--accent);
}
.container {
max-width: 1200px;
margin: var(--nav-height) auto 0;
padding: 2rem;
}
header {
text-align: center;
padding: 4rem 0;
}
h1 {
font-size: 3rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #5c6bc0, #7986cb);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.subtitle {
color: var(--text-secondary);
font-size: 1.2rem;
margin-bottom: 2rem;
}
.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 800px;
margin: 0 auto 4rem auto;
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
border-radius: 12px;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 4rem;
}
.feature-card {
background-color: var(--bg-secondary);
padding: 2rem;
border-radius: 12px;
transition: transform 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
}
.feature-card h3 {
color: var(--accent);
margin-bottom: 1rem;
}
.feature-card p {
color: var(--text-secondary);
}
.about-section {
background-color: var(--bg-secondary);
padding: 4rem 0;
margin: 4rem 0;
}
.about-content {
max-width: 800px;
margin: 0 auto;
padding: 0 2rem;
text-align: center;
}
.about-content h2 {
color: var(--accent);
margin-bottom: 2rem;
}
.about-content p {
color: var(--text-secondary);
margin-bottom: 1rem;
}
footer {
background-color: var(--bg-secondary);
padding: 3rem 0;
margin-top: 4rem;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.footer-section h3 {
color: var(--accent);
margin-bottom: 1rem;
}
.footer-section p, .footer-section a {
color: var(--text-secondary);
text-decoration: none;
margin-bottom: 0.5rem;
display: block;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
color: var(--text-secondary);
font-size: 1.5rem;
transition: color 0.3s ease;
}
.social-links a:hover {
color: var(--accent);
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.subtitle {
font-size: 1rem;
}
.container {
padding: 1rem;
}
.nav-content {
padding: 0 1rem;
}
.nav-links {
gap: 1rem;
}
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
.social-links {
justify-content: center;
}
}
</style>
</head>
<body>
<nav class="nav">
<div class="nav-content">
<a href="#" class="logo">Promptly Code</a>
<div class="nav-links">
<a href="#features">Features</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
<a href="https://marketplace.visualstudio.com/items?itemName=PromptlyCode.promptlycode" target="_blank">Download</a>
</div>
</div>
</nav>
<div class="container">
<header>
<h1>Promptly Code</h1>
<p class="subtitle">AI-Powered Programming Assistant for VSCode</p>
</header>
<div class="video-container">
<iframe src="https://www.youtube.com/embed/pFg-tJSIFnI"
title="Promptly Code Demo"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="features" id="features">
<div class="feature-card">
<h3>Smart Code Modification</h3>
<p>Use Cmd+K to quickly modify and refactor your code with AI assistance.</p>
</div>
<div class="feature-card">
<h3>Predictive Code Completion</h3>
<p>Advanced code completion and prediction with Tab key integration.</p>
</div>
<div class="feature-card">
<h3>Multi-Agent Technology</h3>
<p>Docker-based environment verification with ReAct feedback and error correction.</p>
</div>
<div class="feature-card">
<h3>Voice Programming</h3>
<p>Interactive programming through voice commands and wake-up functionality.</p>
</div>
<div class="feature-card">
<h3>Rapid Prototyping</h3>
<p>Quick POC verification for AI programming projects and implementations.</p>
</div>
</div>
<section class="about-section" id="about">
<div class="about-content">
<h2>About Promptly Code</h2>
<p>Promptly Code is a revolutionary VSCode extension that transforms the way developers write code. By leveraging advanced AI technology and multi-agent systems, we provide an intuitive and efficient coding experience.</p>
<p>Our mission is to enhance developer productivity through intelligent code assistance, while maintaining the highest standards of code quality and security.</p>
</div>
</section>
</div>
<footer id="contact">
<div class="footer-content">
<div class="footer-section">
<h3>Contact Us</h3>
<p>Email: [email protected]</p>
<p>Address: San Francisco, CA</p>
<div class="social-links">
<a href="https://x.com/promptlycode" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/PromptlyCode/PromptlyCode" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.youtube.com/@PromptlyCode/videos" target="_blank"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-section">
<h3>Resources</h3>
<a href="#">Documentation</a>
<a href="#">API Reference</a>
<a href="#">Blog</a>
<a href="#">Community</a>
</div>
<div class="footer-section">
<h3>Legal</h3>
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
<a href="#">License</a>
</div>
</div>
</footer>
</body>
</html>