martials.no/src/components/Greeting.astro
Martin Berg Alstad 87184c431d
All checks were successful
Build and deploy website / build (push) Successful in 1m24s
Build and deploy website / deploy (push) Successful in 1s
Fix form on contact-me page.
Fix wrong link to source code.

Eager loading of image on landing page.

Signed-off-by: Martin Berg Alstad <git@martials.no>
2024-10-09 20:42:10 +02:00

22 lines
649 B
Plaintext

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