-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (115 loc) Β· 2.76 KB
/
index.html
File metadata and controls
115 lines (115 loc) Β· 2.76 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
107
108
109
110
111
112
113
114
115
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Backoffice</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 20px;
font-weight: 400;
line-height: 1.5;
font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
color: #bababa;
background-color: #1a1a1a;
}
main {
width: 100%;
max-width: 800px;
margin: 0 auto;
padding-top: 25vh;
padding-left: 0.5rem;
padding-right: 0.5rem;
text-align: center;
}
div {
font-size: 3rem;
}
h1 {
font-family: monospace;
}
a {
color: inherit;
}
p {
margin-top: 0.25em;
margin-bottom: 1.5em;
}
small {
font-size: 0.8em;
opacity: 0.8;
font-family:
ui-sans-serif,
system-ui,
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
"Helvetica Neue",
Arial,
"Noto Sans",
sans-serif,
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji";
}
code {
font-size: 0.7em;
font-family: monospace;
background-color: #2b2b2b;
padding: 0.5em 0.75em;
border-radius: 0.25em;
}
.button {
opacity: 0.8;
margin-top: 1.25em;
font-size: 0.75rem;
font-family:
ui-sans-serif,
system-ui,
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
"Helvetica Neue",
Arial,
"Noto Sans",
sans-serif,
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji";
display: inline-block;
padding: 0.5em 0.75em;
border-radius: 0.25em;
text-decoration: underline;
color: inherit;
}
pre {
margin-top: -1rem;
margin-bottom: 1rem;
}
</style>
</head>
<body>
<main>
<div>π€</div>
<h1>Backoffice</h1>
<p>
Give your AI assistant β Claude.ai, ChatGPT, or any other β its own Linux machine that keeps
working even when you're not in a conversation.
</p>
<p>
<small>Ask your coding agent to set it up for you:</small>
</p>
<pre><code>claude "Read https://kvendrik.com/backoffice/AGENT.md"</code></pre>
<p><a class="button" href="https://github.com/kvendrik/backoffice">View on Github</a></p>
</main>
</body>
</html>