- Add 100 blog posts covering AI, development, and tech topics - Add .env.example for environment configuration - Add accessibility and lighthouse audit scripts - Remove obsolete SEO reports and temporary files - Remove dev-dist build artifacts and backup files - Remove unused portrait images (moved/consolidated elsewhere) - Update contact form and component improvements Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
878 B
TypeScript
29 lines
878 B
TypeScript
// src/utils/constants.ts
|
|
// Zentrale Konstanten für die gesamte Website
|
|
|
|
export const CONTACT = {
|
|
email: "info@damjan-savic.com",
|
|
phone: "+49 175 695 0979",
|
|
website: "https://damjan-savic.com",
|
|
linkedin: "https://www.linkedin.com/in/damjan-savi%C4%87-720288127/",
|
|
github: "https://github.com/damjan1996",
|
|
location: {
|
|
city: "Bergisch Gladbach",
|
|
country: "Germany",
|
|
region: "Nordrhein-Westfalen"
|
|
}
|
|
} as const;
|
|
|
|
export const CURRENT_ROLE = {
|
|
company: "Everlast Consulting GmbH",
|
|
position: "Process Automation Specialist",
|
|
since: "2024-12"
|
|
} as const;
|
|
|
|
export const PROFILE = {
|
|
name: "Damjan Savić",
|
|
title: "Fullstack Developer",
|
|
subtitle: "Building websites, apps and SaaS with Next.js, React and TypeScript",
|
|
languages: ["German", "English", "Serbian", "French", "Spanish", "Russian"]
|
|
} as const;
|