Fix localization on detailed project pages.
All checks were successful
Build and deploy website / build (push) Successful in 34s

Fix way too much padding on <br/> tags.

Added some old project entries.

Added Project as a convenience type.

Added link class to all a tags to easier distinguish links in text.

Signed-off-by: Martin Berg Alstad <git@martials.no>
This commit is contained in:
2024-10-20 22:25:52 +02:00
parent 941a93f8a5
commit b9f7b63aa9
11 changed files with 86 additions and 27 deletions

View File

@ -1,5 +1,5 @@
---
import ProjectPage from "../../../components/projects/ProjectPage.astro"
import ProjectPage from "@/components/projects/ProjectPage.astro"
import { type GetStaticPathsResult } from "astro"
// Prerender the page as static HTML during build
@ -7,8 +7,9 @@ export const prerender = true
export function getStaticPaths(): GetStaticPathsResult {
return [
{ params: { project: "hotelservice" } },
{ params: { project: "homepage" } }
{ params: { project: "hvl-ics-simplifier" } },
{ params: { project: "homepage" } },
{ params: { project: "simplify-truths" } }
]
}