summaryrefslogtreecommitdiff
path: root/src/components/sections/Hero.astro
blob: 76f801112b9c5134ded05b2ea6629c672b20d2d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
import pfp from "../../../public/leo.png";
import { Image } from "astro:assets";
---

<div class="flex flex-col sm:flex-row items-center mt-2 gap-5">
  <Image
    src={pfp}
    alt="leos profilbild (ein pixel charakter)"
    }
    class="rounded-full"
    loading="eager"
  />
  <div class="text-center sm:text-start">
    <h1 class="text-2xl">Leo Götz</h1>
    <p>Webentwickler</p>
  </div>
</div>