summaryrefslogtreecommitdiff
path: root/src/components/sections
diff options
context:
space:
mode:
authorLeo Goetz <dev@leogtz.de>2026-05-08 15:37:39 +0200
committerLeo Goetz <dev@leogtz.de>2026-05-08 15:37:39 +0200
commitd4f98e2d1f85fbdffa2470071e22bba2dacc00c0 (patch)
tree02aff46bd5791d1eddca4432f89bc44945b8b033 /src/components/sections
inital commitHEADmaster
Diffstat (limited to 'src/components/sections')
-rw-r--r--src/components/sections/AboutMe.astro11
-rw-r--r--src/components/sections/Additional.astro20
-rw-r--r--src/components/sections/Hero.astro18
-rw-r--r--src/components/sections/TechStack.astro19
4 files changed, 68 insertions, 0 deletions
diff --git a/src/components/sections/AboutMe.astro b/src/components/sections/AboutMe.astro
new file mode 100644
index 0000000..234bee2
--- /dev/null
+++ b/src/components/sections/AboutMe.astro
@@ -0,0 +1,11 @@
+---
+
+---
+
+<div>
+ <h2 class="underline underline-offset-3 mb-2">Über mich</h2>
+ <p>
+ Ich bin Leo, 18 Jahre alt und programmiere gerne in Javascript/Typescript.
+ Meine Hobbys sind Schach spielen, Lesen und Chalistenics
+ </p>
+</div>
diff --git a/src/components/sections/Additional.astro b/src/components/sections/Additional.astro
new file mode 100644
index 0000000..6fa8b4a
--- /dev/null
+++ b/src/components/sections/Additional.astro
@@ -0,0 +1,20 @@
+---
+
+---
+
+<div class="mb-5">
+ <p>
+ -> Meine <a href="/projects" class="underline">Projekte</a>
+ </p>
+ <p>
+ -> Mein <a href="/blog" class="underline">Blog</a>
+ </p>
+ <p>
+ -> Git: <a href="https://git.leogtz.de" class="underline"
+ >git.leogtz.de</a
+ >
+ </p>
+ <p>
+ -> Email: <span class="underline">me [at] leogtz.de</span>
+ </p>
+</div>
diff --git a/src/components/sections/Hero.astro b/src/components/sections/Hero.astro
new file mode 100644
index 0000000..76f8011
--- /dev/null
+++ b/src/components/sections/Hero.astro
@@ -0,0 +1,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>
diff --git a/src/components/sections/TechStack.astro b/src/components/sections/TechStack.astro
new file mode 100644
index 0000000..0b536e1
--- /dev/null
+++ b/src/components/sections/TechStack.astro
@@ -0,0 +1,19 @@
+---
+
+---
+
+<div>
+ <h2 class="underline underline-offset-3 mb-2">Technologien</h2>
+ <p>
+ <a href="https://justfuckingusehtml.com/" class="underline">HTML</a> | <a
+ href="https://justfuckingusecss.com/"
+ class="underline">CSS</a
+ > | JS / TS | Nodejs |
+ <a href="https://justfuckingusereact.com/" class="underline">React</a> | <a
+ href="https://justfuckinguseastro.com/"
+ class="underline">Astro</a
+ > | <a href="https://justfuckingusetailwind.com/" class="underline"
+ >Tailwind</a
+ > | Nix/NixOS
+ </p>
+</div>