Fix @ alias.

Fix margins on mobile for projects.

Moved html code to common component for projects

Updated image of me to a far superior one.

Signed-off-by: Martin Berg Alstad <git@martials.no>
This commit is contained in:
2024-10-06 11:41:27 +02:00
parent 5e32cfc551
commit ebd59fe40e
11 changed files with 71 additions and 48 deletions

View File

@ -1,11 +1,11 @@
---
import ProjectPage from "../../components/ProjectPage.astro"
import ProjectPage from "../../components/projects/ProjectPage.astro"
import { type GetStaticPathsResult } from "astro"
export function getStaticPaths(): GetStaticPathsResult {
return [
{ params: { project: "hotelservice" } },
{ params: { project: "homepage" } },
{ params: { project: "homepage" } }
]
}