diff --git a/install/index.html b/install/index.html index e36cd9c..b59b4e6 100644 --- a/install/index.html +++ b/install/index.html @@ -70,6 +70,34 @@ } .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; } .nav-logo-text { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 16px; color: var(--green); } + .nav-links { display: flex; align-items: center; gap: 8px; } + .nav-link { + display: inline-flex; align-items: center; gap: 6px; + padding: 7px 14px; border-radius: 8px; + font-size: 13px; font-weight: 500; + color: var(--text-dim); text-decoration: none; + transition: all 0.2s; + font-family: 'Inter', system-ui, sans-serif; + } + .nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); } + .nav-link-git { + display: inline-flex; align-items: center; gap: 7px; + padding: 7px 16px; border-radius: 8px; + font-size: 13px; font-weight: 600; + color: var(--green); text-decoration: none; + background: var(--green-glow); + border: 1px solid rgba(34,197,94,0.2); + transition: all 0.25s; + font-family: 'JetBrains Mono', monospace; + } + .nav-link-git:hover { + background: rgba(34,197,94,0.2); + border-color: rgba(34,197,94,0.4); + box-shadow: 0 0 16px rgba(34,197,94,0.15); + transform: translateY(-1px); + } + .nav-link-git svg { transition: transform 0.2s; } + .nav-link-git:hover svg { transform: scale(1.1); } /* ===== HERO ===== */ .hero { @@ -504,6 +532,14 @@ terminal-chat + @@ -537,12 +573,19 @@ $ curl -s https://ben.de-roo.org/install/script.sh | bash - - - - - -


or download zip from the git site: https://git.de-roo.org/ben/pychat


+
+
+ or +
+
+
+ + + Download ZIP from git.de-roo.org + +
@@ -796,7 +839,7 @@ # Automatic installation
$ curl -s https://ben.de-roo.org/install/script.sh | bash

# Or manually
- $ git clone <repo-url>
+ $ git clone https://git.de-roo.org/ben/pychat.git
$ cd terminal-chat
$ pip install -r requirements.txt @@ -955,8 +998,8 @@

Ready to contribute? Start here:

# Clone and start hacking
- $ git clone <repo-url>
- $ cd terminal-chat
+ $ git clone https://git.de-roo.org/ben/pychat.git
+ $ cd pychat
$ python3 server.py & python3 client.py

No complex setup. No build tools. Just Python.

@@ -971,7 +1014,8 @@ Install  ·  Documentation  ·  Features  ·  - Contribute + Contribute  ·  + Source Code