-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
399 lines (375 loc) · 13.4 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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LlamaPReview - AI-Powered GitHub Code Review Assistant</title>
<meta name="description" content="LlamaPReview is an advanced GitHub App that revolutionizes the pull request review process using AI-powered insights.">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
:root {
--primary-color: #0366d6;
--secondary-color: #28a745;
--background-color: #f6f8fa;
--text-color: #24292e;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: var(--text-color);
margin: 0;
padding: 0;
background-color: var(--background-color);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
background-color: var(--primary-color);
color: white;
padding: 1rem 0;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul {
list-style-type: none;
padding: 0;
display: flex;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
.hero {
text-align: center;
padding: 4rem 0;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
max-width: 600px;
margin: 0 auto 2rem;
}
.cta-button {
display: inline-block;
background-color: white;
color: var(--primary-color);
padding: 0.8rem 1.5rem;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
border: 2px solid white;
}
.cta-button:hover {
background-color: #f0f0f0;
}
.features {
padding: 4rem 0;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.feature-item {
background-color: white;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
}
.feature-item i {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1rem;
}
.how-it-works {
background-color: white;
padding: 4rem 0;
}
.step-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}
.step-item {
text-align: center;
}
.step-item .step-number {
display: inline-block;
width: 30px;
height: 30px;
background-color: var(--primary-color);
color: white;
border-radius: 50%;
line-height: 30px;
margin-bottom: 1rem;
}
footer {
background-color: var(--primary-color);
color: white;
text-align: center;
padding: 1rem 0;
margin-top: 4rem;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.feature-grid, .step-grid {
grid-template-columns: 1fr;
}
}
.stats-container {
display: flex;
justify-content: center;
gap: 3rem;
margin: 2rem 0;
}
.stat-item {
text-align: center;
}
.stat-number {
display: block;
font-size: 2.5rem;
font-weight: bold;
color: white;
}
.stat-label {
font-size: 1rem;
opacity: 0.9;
}
.impact {
background-color: #f8f9fa;
padding: 4rem 0;
}
.impact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.impact-item {
display: flex;
align-items: flex-start;
gap: 1.5rem;
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.impact-item i {
font-size: 2rem;
color: var(--primary-color);
}
.impact-content h3 {
margin: 0 0 0.5rem 0;
color: var(--text-color);
}
.impact-content p {
margin: 0;
color: #666;
}
@media (max-width: 768px) {
.stats-container {
flex-direction: column;
gap: 1.5rem;
}
.stat-number {
font-size: 2rem;
}
.impact-grid {
grid-template-columns: 1fr;
}
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 2rem;
}
.cta-button.secondary {
background-color: transparent;
border: 2px solid white;
color: white;
}
.cta-button.secondary:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.impact-item a {
color: var(--primary-color);
text-decoration: none;
font-weight: bold;
}
.impact-item a:hover {
text-decoration: underline;
}
footer a {
color: white;
text-decoration: none;
margin: 0 10px;
}
footer a:hover {
text-decoration: underline;
}
</style>
<meta name="google-site-verification" content="hR-wgdwxFYUNFSW3aU6nAfCxt48e6FF5sq04WjV47sg" />
</head>
<body>
<header>
<nav class="container">
<div class="logo">
<img src="./logo.png" alt="LlamaPReview Logo" height="40">
</div>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#how-it-works">How It Works</a></li>
<li><a href="https://github.com/JetXu-LLM/LlamaPReview-site/discussions" target="_blank">Community</a></li>
<li><a href="https://github.com/apps/llamapreview" target="_blank">GitHub App</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<div class="container">
<h1>LlamaPReview: Your AI-Powered GitHub Code Review Assistant</h1>
<div class="stats-container">
<div class="stat-item">
<span class="stat-number">2,000+</span>
<span class="stat-label">Active Repositories</span>
</div>
<div class="stat-item">
<span class="stat-number">16,000+</span>
<span class="stat-label">Combined Repository Stars</span>
</div>
</div>
<p><b>Only 1-Click Install, currently Full Free, All auto running</b> - Revolutionize your pull request review process with advanced AI insights and automated code analysis.</p>
<div class="cta-buttons">
<a href="https://github.com/marketplace/llamapreview" class="cta-button">Install Now</a>
</div>
</div>
</section>
<section id="features" class="features">
<div class="container">
<h2>Key Features</h2>
<div class="feature-grid">
<div class="feature-item">
<i class="fas fa-search"></i>
<h3>Holistic Code Analysis</h3>
<p>Reviews entire repository context, including related code, issues, and documentation.</p>
</div>
<div class="feature-item">
<i class="fas fa-robot"></i>
<h3>AI-Generated Insights</h3>
<p>Delivers in-depth review comments, enhancing human review efficiency.</p>
</div>
<div class="feature-item">
<i class="fab fa-github"></i>
<h3>Seamless GitHub Integration</h3>
<p>Works natively within your GitHub workflow for a smooth experience.</p>
</div>
<div class="feature-item">
<i class="fas fa-cogs"></i>
<h3>Customizable Review Rules</h3>
<p>Adapt to your team's specific coding standards and practices.</p>
</div>
</div>
</div>
</section>
<section id="impact" class="impact">
<div class="container">
<h2>Community Impact</h2>
<div class="impact-grid">
<div class="impact-item">
<i class="fas fa-code-branch"></i>
<div class="impact-content">
<h3>Growing Developer Community</h3>
<p>Trusted by <b>2,000+</b> repositories across GitHub, from individual developers to large-scale projects.</p>
</div>
</div>
<div class="impact-item">
<i class="fas fa-star"></i>
<div class="impact-content">
<h3>Proven in Production</h3>
<p>Supporting repositories with a combined <b>16,000+</b> stars, helping maintain code quality at scale.</p>
</div>
</div>
<div class="impact-item">
<i class="fas fa-comments"></i>
<div class="impact-content">
<h3>Join Our Community</h3>
<p>Share ideas, get help, and connect with other developers in our <a href="https://github.com/JetXu-LLM/LlamaPReview-site/discussions" target="_blank">GitHub Discussions</a>.</p>
</div>
</div>
</div>
</div>
</section>
<section id="how-it-works" class="how-it-works">
<div class="container">
<h2>How It Works</h2>
<div class="step-grid">
<div class="step-item">
<div class="step-number">1</div>
<h3>Install</h3>
<p>Add LlamaPReview to your GitHub repositories from the Marketplace.</p>
</div>
<div class="step-item">
<div class="step-number">2</div>
<h3>Analyze</h3>
<p>LlamaPReview automatically analyzes new PRs using advanced LLM technology.</p>
</div>
<div class="step-item">
<div class="step-number">3</div>
<h3>Review</h3>
<p>Receive detailed, AI-generated review comments on each PR.</p>
</div>
<div class="step-item">
<div class="step-number">4</div>
<h3>Improve</h3>
<p>Use insights to streamline your review process and improve code quality.</p>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 LlamaPReview. All rights reserved.</p>
<p>
<a href="https://github.com/JetXu-LLM/LlamaPReview-site/discussions" target="_blank">Community</a> |
<a href="./customer_support.html">Customer Support</a> |
<a href="./privacy.html">Privacy Policy</a>
</p>
</div>
</footer>
<script>
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
</body>
</html>