martials.no/src/components/Greeting.astro

21 lines
495 B
Plaintext
Raw Normal View History

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