4 Commits

Author SHA1 Message Date
naomi fd3197c3bf fix: correct favicon oops
Node.js CI / Lint and Test (push) Failing after 1m7s
2025-10-29 14:39:25 -07:00
naomi 4a5a15d2da release: v1.0.0
Node.js CI / Lint and Test (push) Failing after 34s
2025-10-29 13:34:40 -07:00
naomi 2f2ee1c09d feat: update logo and favicon 2025-10-29 13:33:14 -07:00
naomi dafa7ded0e feat: new font 2025-10-29 13:26:15 -07:00
6 changed files with 4599 additions and 20397 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
{ {
"name": "magical-metal", "name": "documentation",
"type": "module", "type": "module",
"version": "0.0.1", "version": "1.0.0",
"scripts": { "scripts": {
"dev": "astro dev", "dev": "astro dev",
"start": "astro dev", "start": "astro dev",
+4587 -20391
View File
File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 2.1 MiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.3 MiB

+5
View File
@@ -297,6 +297,11 @@ export const navigation = [
label: "Callista", label: "Callista",
link: "/projects/callista", link: "/projects/callista",
badge: { text: "v1.0.0", variant: "tip" }, badge: { text: "v1.0.0", variant: "tip" },
},
{
label: "Documentation Site",
link: "/projects/docs",
badge: { text: "v1.0.0", variant: "tip" },
} }
].sort((a, b) => a.label.localeCompare(b.label)), ].sort((a, b) => a.label.localeCompare(b.label)),
}, },
+3 -3
View File
@@ -1,8 +1,8 @@
@font-face { @font-face {
font-family: "OpenDyslexic Mono"; font-family: "Vampyr";
src: url("https://cdn.nhcarrigan.com/fonts/OpenDyslexicMono-Regular.otf") format("opentype"); src: url("https://cdn.nhcarrigan.com/fonts/vampyr.ttf") format("truetype");
} }
* { * {
font-family: "OpenDyslexic Mono", monospace !important; font-family: "Vampyr", monospace !important;
} }
+1
View File
@@ -2,6 +2,7 @@
--primary-color: #8F2447; --primary-color: #8F2447;
--background-color: #E1F6F9DC; --background-color: #E1F6F9DC;
--sl-color-text-accent: #8F2447; --sl-color-text-accent: #8F2447;
font-size: 18px;
} }
html[data-theme="dark"] { html[data-theme="dark"] {