Skip to content

Commit

Permalink
Create customer_support.html
Browse files Browse the repository at this point in the history
  • Loading branch information
JetXu-LLM authored Oct 20, 2024
1 parent 6d20e7d commit 89f74dd
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions customer_support.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,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>&copy; 2024 LlamaPReview. All rights reserved.</p>
</footer>
</body>
</html>

0 comments on commit 89f74dd

Please sign in to comment.