Switch the contact address to business@

This commit is contained in:
2026-07-28 19:01:29 +02:00
parent 4181ef35ba
commit bf40e27820
3 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ export const LEGAL = {
person: SITE.author, // natural person responsible — § 18 Abs. 2 MStV
street: 'Mahlerstraße 10',
city: '14772 Brandenburg an der Havel',
email: 'mail@jeanlucmakiola.de',
email: 'business@jeanlucmakiola.de',
phone: '',
} as const;
@@ -24,5 +24,5 @@ export const LEGAL = {
export const SOCIALS: { label: string; href: string; icon: string }[] = [
{ label: 'Gitea', href: 'https://gitea.jeanlucmakiola.de/makiolaj', icon: 'simple-icons:gitea' },
{ label: 'Ko-fi', href: 'https://ko-fi.com/jeanlucmakiola', icon: 'simple-icons:kofi' },
{ label: 'Email', href: 'mailto:mail@jeanlucmakiola.de', icon: 'mdi:email-outline' },
{ label: 'Email', href: `mailto:${LEGAL.email}`, icon: 'mdi:email-outline' },
];