diff --git a/public/me.png b/public/me.png new file mode 100644 index 0000000..a04f895 Binary files /dev/null and b/public/me.png differ diff --git a/src/app/page.tsx b/src/app/page.tsx index f3f6901..9f4032a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,9 @@ +import Hero from "../components/Hero"; + export default function Home() { return ( -
-
+
+
); } diff --git a/src/components/Hero.tsx b/src/components/Hero.tsx new file mode 100644 index 0000000..22cd71b --- /dev/null +++ b/src/components/Hero.tsx @@ -0,0 +1,69 @@ +import Link from "next/link"; + +export default function Hero() { + return ( +
+ {/* Blue background glow */} +
+
+ +
+ {/* Left column */} +
+ + // Hi, my name is + + +

+ André Kempf. +

+ +

+ Full-Stack Developer +

+ +

+ I conceptualize and develop modern web applications. With a sharp + eye for detail and a focus on clean code, I bring digital ideas to + life. + {/* + German: + Ich konzipiere und entwickle moderne Web-Anwendungen. Mit einem klaren + Auge fürs Detail und einem Fokus auf sauberen Code erwecke ich + digitale Ideen zum Leben. + */} +

+ + {/* Buttons */} +
+ + Contact me + + + Download CV + +
+
+ + {/* Right column */} +
+
+
+ André Kempf +
+
+
+
+
+ ); +}