From 3460a1066f1d5d5f0ef520ac72e67ff9ea69bf14 Mon Sep 17 00:00:00 2001 From: Adam Plesnik Date: Wed, 27 Nov 2024 15:33:44 +0100 Subject: [PATCH] Tune CvPrint --- src/content/CvPrint.tsx | 63 +++++++++++++++++++++-------------------- 1 file changed, 33 insertions(+), 30 deletions(-) diff --git a/src/content/CvPrint.tsx b/src/content/CvPrint.tsx index fc77abc..c7625c4 100644 --- a/src/content/CvPrint.tsx +++ b/src/content/CvPrint.tsx @@ -1,25 +1,37 @@ import Heading from '@/components/Heading' import Link from '@/components/Link' import Paragraph from '@/components/Paragraph' +import { ReactNode } from 'react' import CvTimeline from './CvTimeline' +const Item = ({ title, children }: { title: string; children: ReactNode }) => { + return ( +
+ + {title} + +
{children}
+
+ ) +} + const CvPrint = () => { return ( -
-
+
+
Adam Plesník - UX–UI designer + + UX–UI designer +
-
- adamplesnik.com / +
+ adamplesnik.com{' '} + / adam@adamplesnik.com -
Bratislava, Slovakia
+
Bratislava, Slovakia
-
- - About me - -
+ + <> I spend quality time with my family—or alone when needed—preferably in nature, mountain biking, traveling, or exploring around town. @@ -28,13 +40,10 @@ const CvPrint = () => { I speak English fluently. I also enjoy photography, playing piano as a hobby, and reading. -
-
-
- - Skills - -
+ + + + <> I create, polish, and improve user experiences and interfaces. @@ -44,22 +53,16 @@ const CvPrint = () => { sorted, I do my best to create clean layouts with strong typography, thoughtful colors, and visual clarity. And a touch of playfulness. -
-
-
- - Tech - + + + Figma, React+Typescript, TSX, Tailwind CSS -
-
- - CV - + +
-
+
) }