Add brand-colored accent dot to hero/newsletter headline endings

This commit is contained in:
Marco
2026-07-21 10:28:43 +00:00
parent dee72641a6
commit 8273989d01
5 changed files with 7 additions and 6 deletions
+3 -2
View File
@@ -1,7 +1,8 @@
import type { ReactNode } from "react";
import { Reveal } from "./Reveal";
type NewsletterProps = {
title?: string;
title?: ReactNode;
description?: string;
};
@@ -13,7 +14,7 @@ type NewsletterProps = {
* instead of a second near-duplicate component.
*/
export function Newsletter({
title = "Starte mit einer Woche voller Klarheit",
title = <>Starte mit einer Woche voller Klarheit<span className="text-brand">.</span></>,
description = "Melde dich zum Newsletter an und erhalte die 7-Tage-Challenge, mit der du durch mehr Struktur weniger Stress spürst.",
}: NewsletterProps = {}) {
return (