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

View File

@@ -16,7 +16,7 @@ export const LEGAL = {
person: SITE.author, // natural person responsible — § 18 Abs. 2 MStV person: SITE.author, // natural person responsible — § 18 Abs. 2 MStV
street: 'Mahlerstraße 10', street: 'Mahlerstraße 10',
city: '14772 Brandenburg an der Havel', city: '14772 Brandenburg an der Havel',
email: 'mail@jeanlucmakiola.de', email: 'business@jeanlucmakiola.de',
phone: '', phone: '',
} as const; } as const;
@@ -24,5 +24,5 @@ export const LEGAL = {
export const SOCIALS: { label: string; href: string; icon: string }[] = [ export const SOCIALS: { label: string; href: string; icon: string }[] = [
{ label: 'Gitea', href: 'https://gitea.jeanlucmakiola.de/makiolaj', icon: 'simple-icons:gitea' }, { 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: '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' },
]; ];

View File

@@ -2,7 +2,7 @@
import BaseLayout from '../layouts/BaseLayout.astro'; import BaseLayout from '../layouts/BaseLayout.astro';
import { Icon } from 'astro-icon/components'; import { Icon } from 'astro-icon/components';
import { getCollection } from 'astro:content'; import { getCollection } from 'astro:content';
import { SITE } from '../consts'; import { SITE, LEGAL } from '../consts';
import { getPublishedPosts } from '../utils/posts'; import { getPublishedPosts } from '../utils/posts';
const posts = (await getPublishedPosts()).slice(0, 4); const posts = (await getPublishedPosts()).slice(0, 4);
@@ -33,7 +33,7 @@ const projects = (await getCollection('projects')).sort(
<div class="hero__actions"> <div class="hero__actions">
<a class="btn btn--filled" href="#work">View work</a> <a class="btn btn--filled" href="#work">View work</a>
<a class="text-link" href="/blog">Read the blog <span class="dot">→</span></a> <a class="text-link" href="/blog">Read the blog <span class="dot">→</span></a>
<a class="text-link" href="mailto:mail@jeanlucmakiola.de"> <a class="text-link" href={`mailto:${LEGAL.email}`}>
<Icon name="mdi:email-outline" /> Get in touch <Icon name="mdi:email-outline" /> Get in touch
</a> </a>
</div> </div>

View File

@@ -1,5 +1,6 @@
--- ---
import BaseLayout from '../layouts/BaseLayout.astro'; import BaseLayout from '../layouts/BaseLayout.astro';
import { LEGAL } from '../consts';
// A /uses colophon — the stack behind this site and the Floret apps. // A /uses colophon — the stack behind this site and the Floret apps.
// Add a "Desk / hardware" section here if you'd like to list your machine, // Add a "Desk / hardware" section here if you'd like to list your machine,
@@ -69,7 +70,7 @@ import BaseLayout from '../layouts/BaseLayout.astro';
<p class="muted"> <p class="muted">
This list grows as the stack does. Spotted something you'd ask about? This list grows as the stack does. Spotted something you'd ask about?
<a href="mailto:mail@jeanlucmakiola.de">Get in touch</a>. <a href={`mailto:${LEGAL.email}`}>Get in touch</a>.
</p> </p>
</article> </article>
</BaseLayout> </BaseLayout>