All checks were successful
Build and deploy website / build (push) Successful in 34s
12 lines
260 B
Plaintext
12 lines
260 B
Plaintext
---
|
|
import ProjectPage from "@/components/projects/ProjectPage.astro"
|
|
import "@/styles/global.css"
|
|
|
|
// Prerender must be false for paraglide js
|
|
export const prerender = false
|
|
|
|
const { project } = Astro.params
|
|
---
|
|
|
|
<ProjectPage project={ project as string } />
|