-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.ts
77 lines (74 loc) · 1.61 KB
/
config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import { SkillCategoryKey } from "./types";
export const CONTACT_INFO = {
name: "Liza Blomdahl-Olsevskaja",
email: "[email protected]",
phone: "0730-500 244",
linkedin: "https://www.linkedin.com/in/liza-blomdahl/",
github: "https://github.com/okaziya",
};
export const SITE_INFO = {
title: "CV | Liza Blomdahl-Olsevskaja - Full Stack Developer",
description: "Professional CV of Liza Blomdahl-Olsevskaja – a skilled Full Stack Developer.",
};
export const SKILL_CATEGORIES: { titleKey: SkillCategoryKey; skills: string[] }[] = [
{
titleKey: "skills",
skills: [
"Agile Web Development",
"tRPC",
"useQuery",
"REST API",
"Lambda",
"Step Functions",
"CI/CD Pipeline",
"Jest",
"Vitest",
"Storybook",
],
},
{
titleKey: "codeLanguages",
skills: [
"JavaScript",
"TypeScript",
"Python",
"Go",
"Rust",
"C++",
"SQL",
"GraphQL",
"HTML & CSS",
"Shell Scripting",
],
},
{
titleKey: "tools",
skills: [
"Docker",
"Kubernetes",
"Terraform",
"Git",
"GitHub Actions",
"VS Code",
"JIRA",
"Postman",
"Webpack",
"ESLint",
],
},
{
titleKey: "databases",
skills: [
"PostgreSQL",
"MySQL",
"MongoDB",
"DynamoDB",
"Redis",
"SQLite",
"Elasticsearch",
"Supabase",
"Firebase Firestore",
"PlanetScale",
],
},
];