1
0
Fork 0
forked from ari/ari-express

Compare commits

..

6 commits

Author SHA1 Message Date
Ari
3020498ad6
buttons! 2025-07-24 10:47:12 -04:00
ari
7e087926c3 Nano address
Testing commiting from phone directly
2025-06-16 06:41:21 +00:00
c59fd4d9b6 Merge pull request 'Optimise your thicc ahh font' (#2) from aria/ari-express:font-replacement into main
Reviewed-on: ari/ari-express#2
Reviewed-by: Ariadna <ariadna@hey.com>
2025-06-01 06:55:52 +00:00
25caa3f66f
Default to local fonts and specify font order
You're not currently using any of the nerd font features but I *think*
if you do then hte system will fall back to the nerd font when needed
with this css change still??
2025-06-01 16:46:51 +10:00
14ba3f7814
Add a less nerdy version of the font 2025-06-01 16:44:14 +10:00
93e3878312 Merge pull request 'Compress png images' (#1) from aria/ari-express:aria-imgbot into main
Reviewed-on: ari/ari-express#1
2025-05-28 02:38:56 +00:00
4 changed files with 10 additions and 2 deletions

View file

@ -31,6 +31,9 @@
<div id="buttonsContainer"> <div id="buttonsContainer">
<a href="https://ari.express"><img id="buttonMe" src="/assets/Button.png" alt="Button Me" /></a> <a href="https://ari.express"><img id="buttonMe" src="/assets/Button.png" alt="Button Me" /></a>
<a href="https://witchcraft.systems"><img id="buttonWS" src="/assets/PWsbutton.png" alt="Button WS" /></a> <a href="https://witchcraft.systems"><img id="buttonWS" src="/assets/PWsbutton.png" alt="Button WS" /></a>
<a href="https://aria.coffee"><img src="https://aria.coffee/static/img/buttons/aria.gif" alt="Aria" style="image-rendering: pixelated;" /> </a>
<a href="https://lenooby09.tech"> <img src="https://lenooby09.tech/88x31.png" alt="Nooby"/> </a>
<a href="https://koldinium.com"> <img id="Kold" src="https://koldinium.com/links/kold.png" alt="kold isn't real" /> </a>
</div> </div>
<p>© 2025 Ari</p> <p>© 2025 Ari</p>
</div> </div>

Binary file not shown.

View file

@ -14,4 +14,5 @@ Crypto nerd stuff:
- Ethereum network: 0x3b3F81932d69DE47bC41B2d1b48fd4301388d8Fb - Ethereum network: 0x3b3F81932d69DE47bC41B2d1b48fd4301388d8Fb
- Bitcoin: bc1qa7c6zrhr67a63llmp06cwlhglarh66r7a5jq4a - Bitcoin: bc1qa7c6zrhr67a63llmp06cwlhglarh66r7a5jq4a
- Litecoin: LffPkpthn7ui9pUL7zGLBt93kVLwVt5h8W - Litecoin: LffPkpthn7ui9pUL7zGLBt93kVLwVt5h8W
- Monero: 44U7isYJz4fM4AJRGqY17z7Yfm3Zkumv91sytXYY6zFaAn64WHGxXceYpoeLCqJVwL3voJvHngH8NBSJUPVPf3y96nSCFRD - Monero: 44U7isYJz4fM4AJRGqY17z7Yfm3Zkumv91sytXYY6zFaAn64WHGxXceYpoeLCqJVwL3voJvHngH8NBSJUPVPf3y96nSCFRD
- Nano/XNO: nano_1e3kmf53sd3yjqffdnirrfacbkxmoyoa66onfyhdtmkxwuwbzo8y6nbbb6pm

View file

@ -15,7 +15,11 @@
} }
@font-face { @font-face {
font-family: 'ShureTechMono Nerd Font'; font-family: 'ShureTechMono Nerd Font';
src: url(/assets/ShureTechMonoNerdFont-Regular.ttf); src:
local("Share Tech Mono"),
local("ShureTechMono Nerd Font"),
url(/assets/ShareTechMono-Regular.ttf),
url(/assets/ShureTechMonoNerdFont-Regular.ttf);
} }
body { body {
font-family: 'ShureTechMono Nerd Font', monospace; font-family: 'ShureTechMono Nerd Font', monospace;