Skip to content

Commit 0dc1f8e

Browse files
committed
updates html
1 parent 2ae04c0 commit 0dc1f8e

2 files changed

Lines changed: 106 additions & 2 deletions

File tree

agent/context/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
margin-bottom: 1.5em;
4040
}
4141
code {
42-
font-size: 1rem;
42+
font-size: 0.8rem;
4343
font-family: monospace;
4444
background-color: #2b2b2b;
4545
padding: 0.5em 0.75em;
@@ -75,7 +75,7 @@
7575
<body>
7676
<main>
7777
<div>🤖</div>
78-
<h1>compact()</h1>
78+
<h1><a href="https://kvendrik.com/greg">greg</a>/compact</h1>
7979
<p>
8080
A context compaction toolkit for
8181
<a href="https://github.com/badlogic/pi-mono/tree/main/packages/ai"

index.html

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Greg — OpenClaw-like personal assistant</title>
7+
<style>
8+
* {
9+
margin: 0;
10+
padding: 0;
11+
box-sizing: border-box;
12+
}
13+
html {
14+
font-size: 20px;
15+
font-weight: 400;
16+
line-height: 1.5;
17+
font-family:
18+
ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
19+
color: #bababa;
20+
background-color: #1a1a1a;
21+
}
22+
main {
23+
max-width: 600px;
24+
margin: 0 auto;
25+
padding-top: 25vh;
26+
text-align: center;
27+
}
28+
div {
29+
font-size: 3rem;
30+
}
31+
h1 {
32+
font-family:
33+
ui-sans-serif,
34+
system-ui,
35+
-apple-system,
36+
BlinkMacSystemFont,
37+
'Segoe UI',
38+
Roboto,
39+
'Helvetica Neue',
40+
Arial,
41+
'Noto Sans',
42+
sans-serif,
43+
'Apple Color Emoji',
44+
'Segoe UI Emoji',
45+
'Segoe UI Symbol',
46+
'Noto Color Emoji';
47+
}
48+
a {
49+
color: inherit;
50+
}
51+
p {
52+
margin-top: 0.25em;
53+
margin-bottom: 1.5em;
54+
}
55+
code {
56+
font-size: 0.8rem;
57+
font-family: monospace;
58+
background-color: #2b2b2b;
59+
padding: 0.5em 0.75em;
60+
border-radius: 0.25em;
61+
}
62+
.button {
63+
opacity: 0.8;
64+
margin-top: 1.25em;
65+
font-size: 0.75rem;
66+
font-family:
67+
ui-sans-serif,
68+
system-ui,
69+
-apple-system,
70+
BlinkMacSystemFont,
71+
'Segoe UI',
72+
Roboto,
73+
'Helvetica Neue',
74+
Arial,
75+
'Noto Sans',
76+
sans-serif,
77+
'Apple Color Emoji',
78+
'Segoe UI Emoji',
79+
'Segoe UI Symbol',
80+
'Noto Color Emoji';
81+
display: inline-block;
82+
padding: 0.5em 0.75em;
83+
border-radius: 0.25em;
84+
text-decoration: underline;
85+
color: inherit;
86+
}
87+
</style>
88+
</head>
89+
<body>
90+
<main>
91+
<div>🤖</div>
92+
<h1>Greg</h1>
93+
<p>
94+
An <a href="https://openclaw.ai/">OpenClaw</a>-like personal assistant
95+
</p>
96+
<p>
97+
<code>bun add -g @kvendrik/greg && greg quickstart</code>
98+
</p>
99+
<a class="button" href="https://github.com/kvendrik/greg">
100+
View on Github
101+
</a>
102+
</main>
103+
</body>
104+
</html>

0 commit comments

Comments
 (0)