-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (89 loc) · 4.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coverquai - Chrome Extension</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="nav">
<div class="nav-container">
<a href="index.html" class="nav-logo">Coverquai</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="how-to-use.html">How to Use</a>
<a href="tos.html">Terms of Service</a>
</div>
</div>
</nav>
<header>
<h1>Coverquai</h1>
<p>Generate tailored cover letters instantly using AI</p>
<a href="https://chromewebstore.google.com/detail/coverquai/jjmakcdlooapngkpaahaiohafnkhifjk" class="cta-button">Add to Chrome - It's Free</a>
</header>
<div class="container">
<section class="features">
<div class="feature-card">
<h3>🤖 AI-Powered Generation</h3>
<p>Leveraging advanced AI models like Llama 3.1 and Mixtral to create personalized, professional cover letters.</p>
</div>
<div class="feature-card">
<h3>📄 Resume Integration</h3>
<p>Upload your resume once and use it repeatedly. Set a default resume for quick access.</p>
</div>
<div class="feature-card">
<h3>🔄 Auto Job Details</h3>
<p>Automatically extracts job details from supported job posting websites.</p>
</div>
<div class="feature-card">
<h3>💾 Smart Storage</h3>
<p>Auto-saves your progress and stores your preferences securely.</p>
</div>
<div class="feature-card">
<h3>📝 Real-time Preview</h3>
<p>See your cover letter generate in real-time with live formatting.</p>
</div>
<div class="feature-card">
<h3>⬇️ Easy Export</h3>
<p>Download your cover letters as professionally formatted PDF documents.</p>
</div>
</section>
<section class="how-it-works">
<h2>How It Works</h2>
<ol>
<li>Upload your resume or set a default one</li>
<li>Navigate to any job posting</li>
<li>Click the extension icon</li>
<li>Generate your personalized cover letter</li>
<li>Download as PDF or copy the text</li>
</ol>
</section>
<section class="demo-video">
<h2>Watch How It Works</h2>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; border-radius: 8px; margin: 2rem 0;">
<iframe
style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"
src="https://www.youtube.com/embed/kd8kbAN-kkI"
title="Coverquai Demo"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</section>
<section class="privacy">
<h2>Privacy First</h2>
<p>Your data stays private. We only use your resume and job details to generate cover letters. No personal information is stored on our servers.</p>
</section>
<section class="feedback">
<h2>We Value Your Feedback</h2>
<p>Help us improve Coverquai by sharing your experience!</p>
<a href="feedback.html" class="cta-button">Share Feedback</a>
</section>
</div>
<div style="text-align: center; margin: 2rem 0;">
<script type="text/javascript" src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js" data-name="bmc-button" data-slug="bhargavyagnik" data-color="#5F7FFF" data-emoji="☕" data-font="Lato" data-text="Buy me a coffee" data-outline-color="#000000" data-font-color="#ffffff" data-coffee-color="#FFDD00" ></script>
</div>
</body>
</html>