-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (96 loc) · 2.44 KB
/
index.html
File metadata and controls
96 lines (96 loc) · 2.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat Branch Visualizer</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #0f1117;
color: #e2e4ef;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 24px;
}
.card {
max-width: 480px;
width: 100%;
text-align: center;
}
.icon {
width: 72px;
height: 72px;
border-radius: 18px;
margin: 0 auto 24px;
display: block;
}
h1 {
font-size: 26px;
font-weight: 700;
color: #fff;
margin-bottom: 12px;
}
p {
font-size: 16px;
line-height: 1.6;
color: #8b8fa8;
margin-bottom: 32px;
}
.links {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}
a {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 10px 20px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
text-decoration: none;
transition: opacity .15s;
}
a:hover { opacity: .8; }
.btn-primary {
background: #6c8ef7;
color: #fff;
}
.btn-ghost {
background: rgba(255,255,255,.07);
color: #c8d0f0;
border: 1px solid rgba(255,255,255,.1);
}
.footnote {
margin-top: 40px;
font-size: 12px;
color: #4a4d65;
}
.footnote a { color: #6c8ef7; font-size: 12px; padding: 0; background: none; border: none; }
</style>
</head>
<body>
<div class="card">
<img class="icon" src="icons/icon128.png" alt="Chat Branch Visualizer icon">
<h1>Chat Branch Visualizer</h1>
<p>Visualize your ChatGPT and Claude conversation branches as an interactive tree — right in Chrome's native side panel.</p>
<div class="links">
<a class="btn-primary" href="https://chromewebstore.google.com/detail/chat-branch-visualizer/mahknjdihdpeceompocgcclnmjikmncb" target="_blank" rel="noopener">
Add to Chrome
</a>
<a class="btn-ghost" href="https://github.com/NogaUwU/chat-branch-visualizer" target="_blank" rel="noopener">
GitHub
</a>
</div>
<p class="footnote">
<a href="/privacy">Privacy Policy</a>
</p>
</div>
</body>
</html>