-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
184 lines (175 loc) · 8.23 KB
/
app.js
File metadata and controls
184 lines (175 loc) · 8.23 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
const businessSkills = [
"IT project management",
"Process analysis and optimization",
"Technical documentation",
"Stakeholder communication"
];
function Header() {
return (
<header className="bg-dark text-light py-4">
<div className="container text-center">
<h1>Krzysztof Lipski</h1>
<p className="lead">Software Engineer</p>
</div>
</header>
);
}
function Skills() {
const [showDetails, setShowDetails] = React.useState([]);
const toggleDetails = (index) => {
setShowDetails((prevState) => {
const newState = [...prevState];
newState[index] = !newState[index];
return newState;
});
};
return (
<section id="skills" className="container py-4">
<h2 className="text-center mb-4">Skills</h2>
<div className="row">
<div className="col-md-4">
<h3>Technical Skills</h3>
<ul className="list-group">
<li className="list-group-item">Java</li>
<li className="list-group-item">Spring</li>
<li className="list-group-item">SQL</li>
<li className="list-group-item">Python</li>
<li className="list-group-item">Angular</li>
<li className="list-group-item">Bash</li>
<li className="list-group-item">Scrum</li>
</ul>
</div>
<div className="col-md-4">
<h3>Business Skills</h3>
<ul className="list-group">
{businessSkills.map((skill, index) => (
<li key={index} className="list-group-item">
{skill}
<button
className="btn btn-link btn-sm"
onClick={() => toggleDetails(index)}
>
{showDetails[index] ? "Show less" : "Show more"}
</button>
{showDetails[index] && (
<p className="text-muted mt-2">
{skill === "IT project management" && "Planning, organizing, monitoring, and executing IT projects."}
{skill === "Process analysis and optimization" && "Identifying and eliminating bottlenecks in business processes."}
{skill === "Technical documentation" && "Creating clear and understandable project documentation and instructions."}
{skill === "Stakeholder communication" && "Effective communication with business and technical teams."}
</p>
)}
</li>
))}
</ul>
</div>
<div className="col-md-4">
<h3>Soft Skills</h3>
<ul className="list-group">
<li className="list-group-item">Analytical thinking and problem-solving</li>
<li className="list-group-item">Communication and teamwork</li>
<li className="list-group-item">Initiative and independence</li>
<li className="list-group-item">Eagerness to learn and adaptability</li>
<li className="list-group-item">Organization and efficiency</li>
<li className="list-group-item">Quick learning</li>
</ul>
</div>
</div>
</section>
);
}
function Experience() {
return (
<section id="experience" className="container py-4">
<h2 className="text-center mb-4">Experience</h2>
<div className="mb-4">
<h3>Freelancing</h3>
{/* <p>Company Name</p> */}
<p><i>May 2022 - currently</i></p>
<p> Full-stack software development expert specializing in Java/
Spring backend and React.js frontend. Successfully delivered
projects for various clients, demonstrating flexibility and strong
client communication skills.</p>
</div>
<div>
<h3>IT Department</h3>
<p>Toyota Motors Poland</p>
<p><i>Sep 2021 - Dec 2022</i></p>
<p>Led the design and development of a web application,
overcoming challenges in data integration and UI
responsiveness to deliver a user-friendly solution.
Proactively troubleshooted technical issues and implemented
solutions, ensuring smooth project execution and minimizing
downtime.
Adapted quickly to new technologies and tools, contributing
effectively to the project s success despite a steep learning curve.</p>
</div>
</section>
);
}
function Projects() {
return (
<section id="projects" className="container py-4">
<h2 className="text-center mb-4">Projects</h2>
<div className="row">
<div className="col-md-6">
<div className="card mb-4">
<div className="card-body">
<h3 className="card-title">Omni-kom: Gamer-Connecting Platform</h3>
<p className="card-text">Project description and details.</p>
<p className="text-muted">
<b>Date:</b> September 2023 - December 2023
</p>
<p className="text-muted">
<b>Technologies:</b> Java, Swing, Lombok
</p>
<a href="#" className="btn btn-primary">
Project Link {/* github link */}
</a>
</div>
</div>
</div>
<div className="col-md-6">
<div className="card mb-4">
<div className="card-body">
<h3 className="card-title">Tomorrow's Weather App</h3>
<p className="card-text">Project description and details.</p>
<p className="text-muted">
<b>Date:</b> December 2023 - February 2024
</p>
<p className="text-muted">
<b>Technologies:</b> Python, Docker, Flask, Streamlit, Numpy, Cufflinks, Matplotlib, Scikit-learn
</p>
<a href="#" className="btn btn-primary">
Project Link {/* github link */}
</a>
</div>
</div>
</div>
{/* ... (other project cards with similar structure) */}
</div>
</section>
);
}
function Education() {
return (
<section id="education" className="container py-4">
<h2 className="text-center mb-4">Education</h2>
<div className="row">
<div className="col-md-6">
<h3>Engineer's Degree in Computer Science</h3>
<p>Polish-Japanese Academy of Information Technology</p>
<p>Warsaw, Poland</p>
<p>2024</p>
{/* Future implementation for achievements */}
{/* <p>Achievements: List of achievements</p> */}
</div>
{/* Add more education entries if needed */}
</div>
</section>
);
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
[<Header key="header" />, <Skills key="skills" />, <Experience key="experience" />, <Projects key="projects" />, <Education key="education" />]
);