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>