Files
gabrielkaszewski-next/components/about-summary.tsx
Gabriel Kaszewski 9e95d5c544
All checks were successful
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Successful in 1m32s
Add new documents and images to the public directory
- Added essays: qui-sumus-existential-dread.pdf and licencjat.pdf
- Added scripts: loop.pdf
- Added images: DSC_1283.avif, GAK00015.avif, GAK00017.avif, GAK00041.avif, GAK00042.avif, painter.avif, parasitic-god-1.avif, parasitic-god-2.avif, parasitic-god-3.avif, parasitic-god-4.avif, parasitic-god-5.avif, spanish-inq-1.avif, spanish-inq-2.avif, spanish-inq-3.avif, spanish-inq-4.avif, typing-game-1.avif, typing-game-2.avif
2026-08-20 01:39:14 +02:00

42 lines
1.3 KiB
TypeScript

const AboutSummary = () => {
return (
<div
id="who-am-i"
className="flex flex-col items-center justify-center gap-4 p-4 rounded w-full"
>
<h2 className="mt-4 mb-2 text-5xl font-bold tracking-tight text-white">
Who am I?
</h2>
<section className="prose text-white md:prose-lg lg:prose-xl max-w-3xl mx-auto">
<p>
Hi, I&apos;m Gabriel Kaszewski. I studied Bioinformatics and work as
a software engineer. I&apos;ve been programming since I was 11 and
I still enjoy it just as much.
</p>
<p>
I&apos;m currently working on my first game. If it looks interesting,
consider wishlisting it!
</p>
<div className="w-full max-w-full aspect-[646/190] mx-auto not-prose">
<iframe
className="w-full h-full"
src="https://store.steampowered.com/widget/3575090/"
title="Steam store widget"
></iframe>
</div>
<p>
By day I work at{" "}
<strong className="text-yellow-400">WPP Media</strong>. Outside of
that I&apos;m usually tinkering with side projects or picking up
something new.
</p>
</section>
</div>
);
};
export default AboutSummary;