Update userKnowledge

This commit is contained in:
Nikola Petrov 2024-09-23 23:24:20 +02:00
parent f3df4b9913
commit 93241aae82
3 changed files with 10 additions and 3 deletions

View File

@ -7,7 +7,7 @@
"living_location": "Ljubljana, Slovenia", "living_location": "Ljubljana, Slovenia",
"web_link": "https://petrovv.com", "web_link": "https://petrovv.com",
"git_link": "https://git.petrovv.com", "git_link": "https://git.petrovv.com",
"email": "nikolape7@gmail.com", "email": "nikola@petrovv.com",
"project": [ "project": [
{ {
"img": "/images/projects/Advent_Of_Code_Logo.jpg", "img": "/images/projects/Advent_Of_Code_Logo.jpg",
@ -65,6 +65,12 @@
} }
], ],
"experience": [ "experience": [
{
"title": "Backend/Frontend",
"company": "RRC d.o.o",
"time": "01/09/2024 - CURRENT",
"des": "Backend in java with frontend in ext JS and jQuery"
},
{ {
"title": "Developer", "title": "Developer",
"company": "RRC d.o.o", "company": "RRC d.o.o",

View File

@ -1,5 +1,5 @@
import express, { type Request, type Response } from "express"; import express, { type Request, type Response } from "express";
import userData from './userKnowledge.json'; import userData from 'public/userKnowledge.json';
const router = express.Router(); const router = express.Router();

View File

@ -28,6 +28,7 @@
"noPropertyAccessFromIndexSignature": false, "noPropertyAccessFromIndexSignature": false,
"types": [ "types": [
"bun-types" "bun-types"
] ],
"baseUrl": "./"
} }
} }