2024-09-25 22:20:47 +02:00
|
|
|
---
|
|
|
|
import { Image } from "astro:assets"
|
2025-02-16 13:50:27 +01:00
|
|
|
import me from "@/images/me.jpg"
|
2024-10-06 11:41:27 +02:00
|
|
|
import * as m from "@/paraglide/messages.js"
|
|
|
|
import "@/styles/global.css"
|
2024-09-25 22:20:47 +02:00
|
|
|
---
|
|
|
|
|
2024-10-06 11:18:59 +02:00
|
|
|
<div class="flex items-center justify-around flex-wrap">
|
2024-09-25 22:20:47 +02:00
|
|
|
<div class="m-5">
|
2025-02-15 18:01:17 +01:00
|
|
|
<h1>
|
2024-09-25 22:20:47 +02:00
|
|
|
{m.hiIm()}
|
|
|
|
<br />
|
|
|
|
Martin Berg Alstad
|
|
|
|
<br />
|
|
|
|
{m.position()}
|
|
|
|
</h1>
|
2024-10-06 11:18:59 +02:00
|
|
|
<p class="mx-1 sm:my-10">{m.aboutMe()}</p>
|
2024-09-25 22:20:47 +02:00
|
|
|
</div>
|
2025-02-15 14:59:32 +01:00
|
|
|
<Image
|
|
|
|
src={me}
|
2025-02-16 13:50:27 +01:00
|
|
|
alt="Me on a stand in front of a poster that says 'anbudsassistent'"
|
2025-02-15 14:59:32 +01:00
|
|
|
width="400"
|
|
|
|
height="400"
|
2025-02-16 13:50:27 +01:00
|
|
|
class="p-5 mx-auto rounded-full"
|
2025-02-15 14:59:32 +01:00
|
|
|
loading={"eager"}
|
|
|
|
/>
|
2024-09-25 22:20:47 +02:00
|
|
|
</div>
|
2024-10-06 13:27:18 +02:00
|
|
|
<!-- Mastodon verification -->
|
2025-02-15 14:59:32 +01:00
|
|
|
<a rel="me" href="https://snabelen.no/@Martials" class="hidden">Mastodon</a>
|