All checks were successful
Build and deploy website / build (push) Successful in 32s
Signed-off-by: Martin Berg Alstad <git@martials.no>
17 lines
420 B
Plaintext
17 lines
420 B
Plaintext
---
|
|
import ProjectPage from "@/components/projects/ProjectPage.astro"
|
|
import { type GetStaticPathsResult } from "astro"
|
|
import "@/styles/global.css"
|
|
|
|
// Prerender the page as static HTML during build
|
|
export const prerender = true
|
|
|
|
export function getStaticPaths(): GetStaticPathsResult {
|
|
return [{ params: { project: "homepage" } }]
|
|
}
|
|
|
|
const { project } = Astro.params
|
|
---
|
|
|
|
<ProjectPage project={project as string} />
|