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

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

View File

@@ -1,5 +1,6 @@
---
import BaseLayout from '../layouts/BaseLayout.astro';
import { LEGAL } from '../consts';
// 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,
@@ -69,7 +70,7 @@ import BaseLayout from '../layouts/BaseLayout.astro';
<p class="muted">
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>
</article>
</BaseLayout>