-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathapi-docs-index.html
More file actions
106 lines (103 loc) · 3 KB
/
api-docs-index.html
File metadata and controls
106 lines (103 loc) · 3 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
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZK Compression TypeScript SDK - API Documentation</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
color: #333;
background: #f5f5f5;
padding: 2rem;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 3rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #1a1a1a;
}
p {
font-size: 1.125rem;
color: #666;
margin-bottom: 2rem;
}
.packages {
display: grid;
gap: 1.5rem;
margin-top: 2rem;
}
.package {
border: 1px solid #e0e0e0;
border-radius: 6px;
padding: 1.5rem;
transition: all 0.2s;
text-decoration: none;
display: block;
}
.package:hover {
border-color: #9333ea;
box-shadow: 0 4px 12px rgba(147, 51, 234, 0.1);
transform: translateY(-2px);
}
.package h2 {
font-size: 1.5rem;
color: #1a1a1a;
margin-bottom: 0.5rem;
}
.package p {
font-size: 1rem;
color: #666;
margin-bottom: 0;
}
.links {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid #e0e0e0;
display: flex;
gap: 1.5rem;
}
.links a {
color: #9333ea;
text-decoration: none;
font-weight: 500;
}
.links a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>ZK Compression TypeScript SDK</h1>
<p>API reference documentation for Light Protocol's ZK Compression TypeScript libraries.</p>
<div class="packages">
<a href="stateless.js/index.html" class="package">
<h2>@lightprotocol/stateless.js</h2>
<p>Core JavaScript API for ZK Compression and Light Protocol</p>
</a>
<a href="compressed-token/index.html" class="package">
<h2>@lightprotocol/compressed-token</h2>
<p>JavaScript client for the compressed-token program</p>
</a>
</div>
<div class="links">
<a href="https://www.zkcompression.com">Documentation</a>
<a href="https://github.com/Lightprotocol/light-protocol">GitHub</a>
</div>
</div>
</body>
</html>