martials.no/src/components/Greeting.astro

22 lines
631 B
Plaintext
Raw Normal View History

2024-09-25 22:20:47 +02:00
---
import { Image } from "astro:assets"
import me from "@/images/polite-cat.jpg"
import * as m from "@/paraglide/messages.js"
import "@/styles/global.css"
2024-09-25 22:20:47 +02:00
---
<div class="flex items-center justify-around flex-wrap">
2024-09-25 22:20:47 +02:00
<div class="m-5">
<h1 class="sm:text-7xl font-bold">
2024-09-25 22:20:47 +02:00
{m.hiIm()}
<br />
Martin Berg Alstad
<br />
{m.position()}
</h1>
<p class="mx-1 sm:my-10">{m.aboutMe()}</p>
2024-09-25 22:20:47 +02:00
</div>
<Image src={me} alt="Me on a hike" width="400" height="400" class="p-5 mx-auto" />
2024-09-25 22:20:47 +02:00
</div>
<!-- Mastodon verification -->
<a rel="me" href="https://snabelen.no/@Martials" class="hidden">Mastodon</a>