fix: styles

This commit is contained in:
Dan Finch 2026-05-11 11:38:11 +02:00
parent 46f341745c
commit c759d82e28
3 changed files with 9 additions and 4 deletions

View file

@ -5,6 +5,10 @@ import markdown from "@/shared/markdown"
const projects = await getProjects()
export async function getStaticPaths() {
return projects
}
export default function Project({ name }: Project) {
const {
description,
@ -31,6 +35,3 @@ export default function Project({ name }: Project) {
)
}
export async function getStaticPaths() {
return projects
}

View file

@ -121,7 +121,7 @@ const configs: Record<string, ProjectConfig> = {
inwatch: {
type: "package-repo",
owner: "errilaz",
status: ["archived"],
status: ["archived", "stable"],
description: "File watcher based on inotifywait.",
},
squirt: {

View file

@ -52,5 +52,9 @@ export default function Theme() {
width(0),
height(0),
]),
$media(
"screen and (max-width: 768px)",
rule("table", [whiteSpace("unset")]),
),
]
}