Add the trailing period to "einfach produktiv." wherever it was missing

The period is part of the brand name (see Footer.tsx's own comment on
the two-tone logo treatment) — fixed every place it was cleanly
appendable (string/heading endings, or before a dash, matching the
existing precedent in VertragspartnerBlock.tsx). Left the handful of
genuinely awkward mid-sentence spots alone (separable-verb endings,
"einfach produktiv-Konto" hyphenated compounds) rather than force a
period that breaks the sentence — flagging those separately.

Also: Über-mich's checklist now uses the same brand checkmark as
/lebensuhr and /7-tage-klarheits-check instead of plain bullets.
This commit is contained in:
Marco
2026-08-26 19:25:27 +00:00
parent a1c9a2127b
commit e2d81fabc7
8 changed files with 24 additions and 11 deletions
+16 -3
View File
@@ -58,6 +58,16 @@ function Quote({ children }: { children: React.ReactNode }) {
);
}
// Same checkmark used by /lebensuhr's and /7-tage-klarheits-check's own
// checklists — swapped in for plain bullets for consistency.
function Check() {
return (
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" className="shrink-0 mt-1">
<path d="M3 9.5l4 4L15 4" stroke="#f6a701" strokeWidth="2.2" strokeLinecap="round" strokeLinejoin="round" />
</svg>
);
}
const highlights = [
"Impulse, die im echten Leben funktionieren",
"Orientierung statt Überforderung",
@@ -99,7 +109,7 @@ export default function UeberMichPage() {
Genau dort ist einfach produktiv entstanden.
</P>
<H2>Warum einfach produktiv</H2>
<H2>Warum einfach produktiv.</H2>
<P>
Irgendwann habe ich gemerkt, dass ich ständig versuchte, meinen Alltag besser zu organisieren
neue Apps, neue Methoden, neue Routinen. Vieles wurde effizienter. Trotzdem blieb das
@@ -125,9 +135,12 @@ export default function UeberMichPage() {
Keine Patentrezepte. Sondern Gedanken, Erfahrungen und Werkzeuge, die sich in meinem eigenen
Alltag bewährt haben:
</P>
<ul className="flex flex-col gap-2 text-body text-text-body list-disc pl-5">
<ul className="flex flex-col gap-3">
{highlights.map((h) => (
<li key={h}>{h}</li>
<li key={h} className="flex items-start gap-3">
<Check />
<p className="text-body text-text-body">{h}</p>
</li>
))}
</ul>