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>
12 lines
300 B
Plaintext
12 lines
300 B
Plaintext
---
|
|
import { getCollection } from "astro:content"
|
|
import Layout from "@/layouts/Layout.astro"
|
|
import MyProjectsPage from "@/components/projects/MyProjectsPage.astro"
|
|
|
|
const projects = await getCollection("projects")
|
|
---
|
|
|
|
<Layout title="Prosjekter">
|
|
<MyProjectsPage projects={projects} />
|
|
</Layout>
|