Update skills, page breaks and add profile picture
continuous-integration/drone/tag Build is failing

This commit is contained in:
Arnie
2024-10-24 13:15:06 +02:00
parent df24388d95
commit 373f01c9c2
9 changed files with 195 additions and 123 deletions
+3 -2
View File
@@ -2,6 +2,7 @@ import React from "react";
import { Spacer } from "../common/Spacer";
import { Paragraph } from "../common/Text";
import PageBreakAvoid from "../common/PageBreakAvoid";
type SkillProps = {
title: string;
@@ -11,13 +12,13 @@ const Skill: React.FC<React.PropsWithChildren<SkillProps>> = (props) => {
const { children, title } = props;
return (
<div>
<PageBreakAvoid>
<strong>{title}</strong>
<Spacer />
{React.Children.map(children, (c) => (
<Paragraph>{c}</Paragraph>
))}
</div>
</PageBreakAvoid>
);
};