1/**
2 * @file about.tsx
3 * @author Jovan Kitanovic
4 * @description Full-Stack Software Engineer — Novi Sad, Serbia.
5 * Self-directed learner since 2015, professional since 2019 —
6 * founded KALYX in 2026. Adaptable, fast-learning, product-focused.
7 */
8import { Story, Principles, Interests } from '@kalyx/types';
9// ─── Story ────────────────────────────────────────────────
10const story: Story = {
11 started: 2015,
12 location: 'Novi Sad, Serbia',
13 origin: 'self-taught → intern at Infinitydev (2019) → founder of KALYX (2026)',
14 approach: 'Adaptable by nature, fast-learning by choice.',
15 mission: 'Close the gap between design and engineering.',
16 currentFocus: 'Growing KALYX — software built to last.',
17};
18// ─── Principles ───────────────────────────────────────────
19const principles: Principles[] = [
20 { rule: 'Build it right, ship it fast.', detail: 'Quality and speed are not opposites.' },
21 { rule: 'Clean architecture is a feature.', detail: 'Future-you will thank present-you.' },
22 { rule: 'UX is everyone\'s responsibility.', detail: 'Good interfaces are invisible.' },
23];
24// ─── Interests ────────────────────────────────────────────
25const interests: Interests = {
26 tech: ['system design', 'dev tooling', 'open source'],
27 outside: ['photography', 'coffee', 'hiking'],
28 reading: ['system design books', 'tech blogs'],
29 learning: ['Rust', 'Web Components'],
30};
31export default { story, principles, interests };