// Central site config. Imported by astro.config.mjs, layouts, RSS, and SEO head. export const SITE = { url: 'https://jeanlucmakiola.de', title: 'Jean-Luc Makiola', description: 'Personal site of Jean-Luc Makiola — projects, writing, and notes.', author: 'Jean-Luc Makiola', lang: 'en', locale: 'en_US', } as const; // Legal entity details — single source of truth for the Impressum and // Datenschutzerklärung. Registered Einzelunternehmen (Kleinunternehmer per // § 19 UStG; no VAT ID, not in the Handelsregister). `phone` renders only if set. export const LEGAL = { business: 'IT-Dienstleister | Jean-Luc Makiola', // full Gewerbe name (§ 5 DDG) person: SITE.author, // natural person responsible — § 18 Abs. 2 MStV street: 'Mahlerstraße 10', city: '14772 Brandenburg an der Havel', email: 'business@jeanlucmakiola.de', phone: '', } as const; // Social / external links shown in the footer. `icon` is an Iconify name. export const SOCIALS: { label: string; href: string; icon: string }[] = [ { label: 'Codeberg', href: 'https://codeberg.org/jlmakiola', icon: 'simple-icons:codeberg' }, { label: 'Ko-fi', href: 'https://ko-fi.com/jeanlucmakiola', icon: 'simple-icons:kofi' }, { label: 'Email', href: `mailto:${LEGAL.email}`, icon: 'mdi:email-outline' }, ];