summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-11 21:16:12 +0300
committerPaul Buetow <paul@buetow.org>2026-04-11 21:16:12 +0300
commitd9cfad5e1132a8873eda4a3936636d3e4221bf8c (patch)
tree180505232a2b95e744457de8123088679e5f8cfb
parentcc04f99c95fe6ee055057080826aac09550462ca (diff)
branding: add glitch-art logo and update README
-rw-r--r--README.md16
-rw-r--r--logo.svg6
2 files changed, 7 insertions, 15 deletions
diff --git a/README.md b/README.md
index ce0a01e..c7e6b69 100644
--- a/README.md
+++ b/README.md
@@ -10,21 +10,7 @@ A simple AI-engineered command-line percentage calculator written in Go. No fron
This is a toy project created to experience with local LLMs and how good they are at their jobs.
-```
- ┌────────────────────────────────┐
- │ G T Calculator │
- │ │
- │ (o.o) │
- │ /| | \ 5 6 * │
- │ / | | \ _______ │
- │ / | | \ / G T \ │
- │ ( | | )% + | │
- │ \ | | / | RPN | │
- │ \ | | / | Calc | │
- │ \|___|/ |_______| │
- │ Result: 30 │
- └────────────────────────────────┘
-```
+![gt Logo](logo.svg)
## Installation
diff --git a/logo.svg b/logo.svg
new file mode 100644
index 0000000..cd90fc4
--- /dev/null
+++ b/logo.svg
@@ -0,0 +1,6 @@
+<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
+ <rect width="400" height="400" fill="#121212" />
+ <text x="200" y="220" font-family="monospace" font-size="160" fill="#FF00FF" text-anchor="middle" font-weight="bold" transform="translate(-5, -5)">gt</text>
+ <text x="200" y="220" font-family="monospace" font-size="160" fill="#00FFFF" text-anchor="middle" font-weight="bold" transform="translate(5, 5)">gt</text>
+ <text x="200" y="220" font-family="monospace" font-size="160" fill="#FFFFFF" text-anchor="middle" font-weight="bold">gt</text>
+</svg>