patx/mongokv
add mongoKV logo
Commit ab825f8 · patx · 2025-12-12T23:25:18-05:00
Comments
No comments yet.
Diff
diff --git a/README.md b/README.md
index 1995cc8..0236fdc 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-**mongoKV** is a unified sync + async key-value store backed by PyMongo that
-provides a dead-simple Redis-like API (`set`, `get`, `remove`, etc). MongoDB
-handles concurrency — safe across threads, processes, and ASGI workers.
-
-[Read the API docs and user guide to get started](https://patx.github.io/mongokv)
+[](https://patx.github.io/mongokv)
+**[mongoKV](https://patx.github.io/mongokv)** is a tiny sync/async key-value store
+backed by PyMongo that provides a dead-simple Redis-like API (`set`, `get`, etc).
+Safe across threads, processes, and ASGI workers.
+[Read the API docs and user guide to get started](https://patx.github.io/mongokv).
diff --git a/docs/index.html b/docs/index.html
index 8faffbf..1d9ea6d 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -4,12 +4,16 @@
<meta charset="UTF-8">
<title>mongoKV — User Guide & API Reference</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="preconnect" href="https://fonts.googleapis.com">
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+ <link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
+
<style>
:root {
--bg: #f5f5f5;
--fg: #111827;
--muted: #6b7280;
- --accent: #16a34a;
+ --accent: #24663c;
--border: #e5e7eb;
--code-bg: #111827;
--code-fg: #e5e7eb;
@@ -44,10 +48,15 @@
}
h1 {
- font-size: 2rem;
+ font-size: 4rem;
margin: 0 0 4px;
}
-
+
+ .logo {
+ font-family: 'Pacifico', cursive;
+ color: var(--accent);
+ }
+
.subtitle {
color: var(--muted);
margin: 0 0 12px;
@@ -134,7 +143,7 @@
<body>
<div class="page">
<header>
- <h1>mongoKV <span style="font-color:light-grey; font-size:16px;">/ˈmɑːŋɡoʊ kiː ˈvæljuː/</span></h1>
+ <h1><span class="logo">mongoKV</span> <span class="subtitle" style="font-size:16px;">/ˈmɑːŋɡoʊ kiː ˈvæljuː/</span></h1>
<p class="subtitle">Tiny async/sync key–value store on top of MongoDB.</p>
<p class="tagline">
<a href="https://github.com/patx/mongokv" target="_blank" rel="noopener noreferrer">GitHub</a>
diff --git a/docs/logo.png b/docs/logo.png
new file mode 100644
index 0000000..79c5e88
Binary files /dev/null and b/docs/logo.png differ