39 lines
1.6 KiB
TypeScript
39 lines
1.6 KiB
TypeScript
import { type Locale } from '@/i18n/config';
|
|
|
|
interface ProfilePageJsonLdProps {
|
|
locale: Locale;
|
|
}
|
|
|
|
export function ProfilePageJsonLd({ locale }: ProfilePageJsonLdProps) {
|
|
const baseUrl = process.env.NEXT_PUBLIC_SITE_URL || 'https://damjan-savic.com';
|
|
|
|
const schema = {
|
|
'@context': 'https://schema.org',
|
|
'@type': 'ProfilePage',
|
|
dateCreated: '2024-01-01',
|
|
dateModified: new Date().toISOString().split('T')[0],
|
|
mainEntity: {
|
|
'@id': `${baseUrl}/#person`,
|
|
},
|
|
name: locale === 'de'
|
|
? 'Über Damjan Savić - KI-Entwickler & Automatisierungsspezialist'
|
|
: locale === 'sr'
|
|
? 'O Damjanu Saviću - AI Developer & Specijalista za automatizaciju'
|
|
: 'About Damjan Savić - AI Developer & Automation Specialist',
|
|
description: locale === 'de'
|
|
? 'Erfahren Sie mehr über Damjan Savić, Freelance KI-Entwickler und Automatisierungsspezialist aus Köln. Expertise in KI-Agenten, Voice AI, n8n und SaaS-Entwicklung.'
|
|
: locale === 'sr'
|
|
? 'Saznajte više o Damjanu Saviću, freelance AI developeru i specijalisti za automatizaciju iz Kelna. Ekspertiza u AI agentima, Voice AI, n8n i SaaS razvoju.'
|
|
: 'Learn more about Damjan Savić, freelance AI developer and automation specialist from Cologne. Expertise in AI agents, Voice AI, n8n and SaaS development.',
|
|
url: `${baseUrl}/${locale}/about`,
|
|
inLanguage: locale === 'de' ? 'de-DE' : locale === 'sr' ? 'sr-RS' : 'en-US',
|
|
};
|
|
|
|
return (
|
|
<script
|
|
type="application/ld+json"
|
|
dangerouslySetInnerHTML={{ __html: JSON.stringify(schema) }}
|
|
/>
|
|
);
|
|
}
|