Files
einfach-produktiv/app/page.tsx
T
Marco 1cc3e30987 feat(About): dark banner section with script quote, signature, and author photo
Two-column layout: left column stacks serif statement above a row of
Caveat quote (flex-1) + 2px golden divider + author bio (shrink-0).
Signature image is absolute-positioned just below the three Caveat lines
(top: 6.44rem = 3 × 32px line-height). Right column is a full-height
overflow-hidden container with object-cover author photo.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-30 21:12:07 +00:00

18 lines
408 B
TypeScript

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 (
<main className="flex flex-col flex-1">
<Hero />
<Divider />
<Tools />
<Blog />
<About />
</main>
);
}