auto-claude: subtask-3-1 - Add JSDoc to constants.ts

This commit is contained in:
2026-01-25 06:40:57 +01:00
parent a033c0d9e6
commit 4d9e0d3a29
+16 -2
View File
@@ -1,6 +1,12 @@
// src/utils/constants.ts /**
// Zentrale Konstanten für die gesamte Website * Application Constants
* Zentrale Konstanten für die gesamte Website
*/
/**
* Contact information
* Kontaktinformationen für alle Kontaktpunkte auf der Website
*/
export const CONTACT = { export const CONTACT = {
email: "info@damjan-savic.com", email: "info@damjan-savic.com",
phone: "+49 175 695 0979", phone: "+49 175 695 0979",
@@ -14,12 +20,20 @@ export const CONTACT = {
} }
} as const; } as const;
/**
* Current professional role
* Aktuelle berufliche Position und Unternehmen
*/
export const CURRENT_ROLE = { export const CURRENT_ROLE = {
company: "Everlast Consulting GmbH", company: "Everlast Consulting GmbH",
position: "Process Automation Specialist", position: "Process Automation Specialist",
since: "2024-12" since: "2024-12"
} as const; } as const;
/**
* Profile information
* Profil- und persönliche Informationen für die gesamte Website
*/
export const PROFILE = { export const PROFILE = {
name: "Damjan Savić", name: "Damjan Savić",
title: "AI & Automation Specialist", title: "AI & Automation Specialist",