-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustomer_support.html
69 lines (61 loc) · 2.71 KB
/
customer_support.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LlamaPReview - Customer Support</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1, h2 {
color: #0366d6;
}
.support-section {
margin-bottom: 30px;
}
.contact-info {
background-color: #f6f8fa;
border: 1px solid #e1e4e8;
border-radius: 6px;
padding: 15px;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>LlamaPReview Customer Support</h1>
<div class="support-section">
<h2>Welcome to LlamaPReview Support</h2>
<p>We're here to help you make the most of your AI-powered GitHub PR review experience. If you have any questions, concerns, or need assistance, you're in the right place.</p>
</div>
<div class="support-section">
<h2>Frequently Asked Questions</h2>
<h3>Q: How do I install LlamaPReview?</h3>
<p>A: You can install LlamaPReview directly from the GitHub Marketplace. Simply visit our <a href="https://github.com/apps/llamapreview">GitHub App page</a> and click on the "Install" button.</p>
<h3>Q: Is there a free tier available?</h3>
<p>A: Yes, we currently offer a free tier with usage limits. You can install and use LlamaPReview without binding any payment method.</p>
<h3>Q: How does LlamaPReview work?</h3>
<p>A: LlamaPReview automatically analyzes new pull requests using advanced Large Language Models. It provides detailed, AI-generated review comments to streamline your review process and improve code quality.</p>
<h3>Q: Can I customize the review rules?</h3>
<p>A: Yes, LlamaPReview offers customizable review rules that can be adapted to your team's specific coding standards and practices.</p>
</div>
<div class="support-section">
<h2>Getting Help</h2>
<p>If you need further assistance or have specific questions not covered in the FAQs, please don't hesitate to reach out to our support team.</p>
<div class="contact-info">
<h3>Contact Information</h3>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>For urgent matters, please include "URGENT" in the subject line of your email.</p>
</div>
</div>
<footer>
<p>© 2024 LlamaPReview. All rights reserved.</p>
</footer>
</body>
</html>