auto-claude: subtask-3-1 - Add JSDoc to constants.ts
This commit is contained in:
+16
-2
@@ -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 = {
|
||||
email: "info@damjan-savic.com",
|
||||
phone: "+49 175 695 0979",
|
||||
@@ -14,12 +20,20 @@ export const CONTACT = {
|
||||
}
|
||||
} as const;
|
||||
|
||||
/**
|
||||
* Current professional role
|
||||
* Aktuelle berufliche Position und Unternehmen
|
||||
*/
|
||||
export const CURRENT_ROLE = {
|
||||
company: "Everlast Consulting GmbH",
|
||||
position: "Process Automation Specialist",
|
||||
since: "2024-12"
|
||||
} as const;
|
||||
|
||||
/**
|
||||
* Profile information
|
||||
* Profil- und persönliche Informationen für die gesamte Website
|
||||
*/
|
||||
export const PROFILE = {
|
||||
name: "Damjan Savić",
|
||||
title: "AI & Automation Specialist",
|
||||
|
||||
Reference in New Issue
Block a user