diff --git a/bun.lock b/bun.lock index 7178a1b..bbef860 100644 --- a/bun.lock +++ b/bun.lock @@ -5,12 +5,10 @@ "": { "name": "@sigitex/sigitex.com", "dependencies": { - "@hypeup/client": "workspace:*", "@hypeup/lexicon": "workspace:*", "@hypeup/runtime": "workspace:*", "asta": "anton-io/asta", "highlight.js": "^11.11.1", - "hypeup": "workspace:*", "marked": "^18.0.3", "marked-gfm-heading-id": "^4.1.4", "marked-highlight": "^2.2.4", @@ -18,6 +16,7 @@ "devDependencies": { "@types/bun": "^1.3.13", "@typescript/native-preview": "beta", + "hypeup": "workspace:*", "oxfmt": "^0.47.0", "oxlint": "^1.62.0", "sass-embedded": "^1.99.0", @@ -160,9 +159,6 @@ }, }, }, - "catalog": { - "@types/bun": "1.3.12", - }, "packages": { "@babel/code-frame": ["@babel/code-frame@7.29.0", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.28.5", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw=="], diff --git a/package.json b/package.json index 9a6fea3..ecb40be 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,6 @@ "publish": "rsync -avz dist/ quickbasic.org:~/sigitex.com" }, "dependencies": { - "@hypeup/client": "workspace:*", "@hypeup/lexicon": "workspace:*", "@hypeup/runtime": "workspace:*", "asta": "anton-io/asta", diff --git a/src/shared/getProjects.ts b/src/shared/getProjects.ts index 76adb3b..d41f924 100644 --- a/src/shared/getProjects.ts +++ b/src/shared/getProjects.ts @@ -130,12 +130,12 @@ const configs: Record = { status: ["archived", "experiment"], description: "Experimental SSR framework.", }, - fftext: { - type: "monorepo", - owner: "errilaz", - status: ["dormant", "experiment"], - description: "Desktop ANSI art tool.", - }, + // fftext: { + // type: "monorepo", + // owner: "errilaz", + // status: ["dormant", "experiment"], + // description: "Desktop ANSI art tool.", + // }, pg_tagged_unions: { owner: "errilaz", type: "package-repo", diff --git a/src/ui/Theme.ts b/src/ui/Theme.ts index b2fe2ce..9dbb579 100644 --- a/src/ui/Theme.ts +++ b/src/ui/Theme.ts @@ -14,9 +14,9 @@ export default function Theme() { "a:hover", backgroundColor.white, color.black, - textDecoration("none"), + textDecoration.none, ), - rule(".nav-list a:hover", textDecoration("none")), + rule(".nav-list a:hover", textDecoration.none), rule("pre code", [ border("solid 2px white"), lineHeight("calc(var(--line-height) * 0.75)"),