diff --git a/app/components/About.tsx b/app/components/About.tsx new file mode 100644 index 0000000..ba511ad --- /dev/null +++ b/app/components/About.tsx @@ -0,0 +1,71 @@ +export function About() { + return ( +
+ + {/* Left: text content */} +
+ + {/* Large serif statement — width-constrained as per design */} +

+ Ich glaube nicht, dass Menschen mehr Disziplin brauchen. +

+ + {/* Quote row: script quote + golden divider + author bio */} +
+ + {/* Caveat script text with signature positioned below */} +
+
+

Ich glaube,

+

sie brauchen 

+

weniger Reibung.

+
+ {/* Signature — absolute, sits just below the three Caveat lines (3 × 32px = 96px) */} +
+ +
+
+ + {/* Golden vertical divider + author lines */} +
+
+
+

Björn.

+

Führungskraft.

+

Familienmensch.

+

Gründer von einfach-produktiv.

+
+
+ +
+
+ + {/* Right: author photo fills full column height */} +
+ Björn +
+ +
+ ); +} diff --git a/app/page.tsx b/app/page.tsx index 7228981..32132b0 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -2,6 +2,7 @@ import { Hero } from "./components/Hero"; import { Divider } from "./components/Divider"; import { Tools } from "./components/Tools"; import { Blog } from "./components/Blog"; +import { About } from "./components/About"; export default function Home() { return ( @@ -10,6 +11,7 @@ export default function Home() { + ); } diff --git a/public/about-author.jpg b/public/about-author.jpg new file mode 100644 index 0000000..86c73c1 Binary files /dev/null and b/public/about-author.jpg differ diff --git a/public/about-signature.png b/public/about-signature.png new file mode 100644 index 0000000..a3a3be9 Binary files /dev/null and b/public/about-signature.png differ