Skip to content

Commit 72298cf

Browse files
committed
add
1 parent 60b82f1 commit 72298cf

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-0
lines changed

ass/index.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: "Agentic Secret Storage"
3+
image: "/assets/img/og-image-ass.png"
4+
---
5+
6+
<section class="w-full max-w-2xl mx-auto px-6 mt-12 md:mt-20 flex flex-col gap-8">
7+
<img
8+
id="ass-hero"
9+
src="/assets/img/ass-blurred.jpg"
10+
data-src-blurred="/assets/img/ass-blurred.jpg"
11+
data-src-revealed="/assets/img/ass-revealed.jpg"
12+
class="rounded-md border border-zinc-200 dark:border-zinc-800 mx-auto max-w-sm"
13+
/>
14+
15+
<h1 class="hidden font-extrabold text-3xl sm:text-5xl text-zinc-950 dark:text-zinc-50 text-center">Agentic Secret Storage</h1>
16+
<p class="text-center">Secrets designed for agents. No logins. No consoles. Pure cryptography.</p>
17+
<p class="text-center">Get in touch for early access – <a href="mailto:[email protected]" target="_blank">[email protected]</a>.</p>
18+
</section>
19+
20+
<script>
21+
document.addEventListener('DOMContentLoaded', function () {
22+
const img = document.getElementById('ass-hero')
23+
if (!img) return
24+
25+
const blurred = img.dataset.srcBlurred
26+
const revealed = img.dataset.srcRevealed
27+
28+
img.addEventListener('mouseenter', function () {
29+
img.src = revealed
30+
})
31+
32+
img.addEventListener('mouseleave', function () {
33+
img.src = blurred
34+
})
35+
})
36+
</script>

assets/img/ass-blurred.jpg

129 KB
Loading

assets/img/ass-revealed.jpg

186 KB
Loading

assets/img/og-image-ass.png

159 KB
Loading

0 commit comments

Comments
 (0)