forked from HamedMP/CursorLens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cursor Dashboard</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #2c3e50;
}
.cta-button {
display: inline-block;
background-color: #3498db;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Cursor Dashboard</h1>
<p>
Cursor Dashboard is a powerful Next.js application for managing and
analyzing AI configurations and logs.
</p>
<h2>Features:</h2>
<ul>
<li>View total logs and tokens used</li>
<li>Manage AI configurations</li>
<li>Browse recent logs</li>
</ul>
<h2>Getting Started:</h2>
<ol>
<li>Clone the repository</li>
<li>Install dependencies with <code>npm install</code></li>
<li>Run the development server with <code>npm run dev</code></li>
</ol>
<a href="https://github.com/yourusername/your-repo-name" class="cta-button"
>View on GitHub</a
>
</body>
</html>