49 lines
2.0 KiB
TypeScript
49 lines
2.0 KiB
TypeScript
import React from "react";
|
|
|
|
import { Paragraph } from "../common/Text";
|
|
import { Caption } from "../common/Text";
|
|
|
|
const Summary: React.FC = () => {
|
|
return (
|
|
<>
|
|
<Paragraph>
|
|
With many years of experience and a strong skill set in TypeScript, Go
|
|
and Kubernetes, I specialize in overseeing infrastructure, back-end and
|
|
front-end development, bringing an understanding of Amazon Web Services
|
|
(AWS) and Linux system administration. With a focus on implementing
|
|
DevOps practices and streamlining workflows, I have a proven track
|
|
record of delivering efficient and scalable solutions.
|
|
</Paragraph>
|
|
<Paragraph>
|
|
In my current role I take charge of frontend-end development, leveraging
|
|
my expertise in Node.js and TypeScript and partly help out with back-end
|
|
development, to deliver robust and reliable systems. Additionally, I
|
|
manage infrastructure, ensuring smooth performance and optimal
|
|
functionality.
|
|
</Paragraph>
|
|
<Paragraph>
|
|
Fueled by a strong passion for cutting-edge advancements and staying at
|
|
the forefront of industry developments, I am dedicated to driving
|
|
continuous improvement and exploring new frontiers. My goal is to
|
|
collaborate with forward-thinking teams and contribute to the
|
|
development of cutting-edge solutions. I thrive in dynamic and
|
|
challenging environments, where I can apply my technical expertise and
|
|
problem-solving abilities to drive success.
|
|
</Paragraph>
|
|
|
|
<Paragraph>
|
|
In addition to my technical expertise, I hold certifications as a
|
|
Control4 Pro and KNX Partner. These certifications validate my
|
|
proficiency in Lua programming and Control4 integration, as well as my
|
|
knowledge of KNX systems.
|
|
</Paragraph>
|
|
<Caption>
|
|
-- This summary was graciously generated by an AI and then rewritten and
|
|
adjusted by a human
|
|
</Caption>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Summary;
|