Behebung issues git

This commit is contained in:
2026-04-27 16:21:55 +02:00
parent b0343a034b
commit 54856c234c
13 changed files with 151 additions and 114 deletions

View File

@@ -86,7 +86,7 @@ const LegalPage: React.FC<LegalPageProps> = ({
</h2>
<div className="space-y-4 text-base md:text-lg leading-relaxed text-gray-600 dark:text-gray-300">
{section.body.map((paragraph, paragraphIndex) => {
const [before, after] = paragraph.split('info@bayareaaffiliates.com');
const [before, after] = paragraph.split('support@bayarea-cc.com');
return (
<p key={`${section.title}-${paragraphIndex}`}>
@@ -94,10 +94,10 @@ const LegalPage: React.FC<LegalPageProps> = ({
<>
{before}
<a
href="mailto:info@bayareaaffiliates.com"
href="mailto:support@bayarea-cc.com"
className="text-gray-900 dark:text-white underline decoration-white/30 underline-offset-4 transition-opacity hover:opacity-75"
>
info@bayareaaffiliates.com
support@bayarea-cc.com
</a>
{after}
</>