Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Certificates and Publications section. #26

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 69 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,12 @@ export default function Page() {
</div>
</div>
</CardHeader>
<CardContent className="mt-2">{education.degree}</CardContent>
<CardContent className="mt-2">
<p>{education.degree}</p>
{education.grade && (
<p>Grade: {education.grade}</p>
)}
</CardContent>
</Card>
);
})}
Expand All @@ -177,12 +182,74 @@ export default function Page() {
title={project.title}
description={project.description}
tags={project.techStack}
link={"link" in project ? project.link.href : undefined}
link={"link" in project ? project.link?.href : undefined}
/>
);
})}
</div>
</Section>
{RESUME_DATA.certification && RESUME_DATA.certification.length > 0 && (
<Section className="print-force-new-page scroll-mb-16">
<h2 className="text-xl font-bold">Certifications</h2>
{RESUME_DATA.certification.map((certification) => {
return (
<Card key={certification.name}>
<CardHeader>
<div className="flex items-center justify-between gap-x-2 text-base">
<h3 className="font-semibold leading-none">
<a
className="inline-flex gap-x-1.5 align-baseline leading-none hover:underline"
href={certification.link}
target="_blank"
>
{certification.name}
</a>
</h3>
<div className="text-sm tabular-nums text-gray-500">
{certification.issueDate} - {certification.expirationDate}
</div>
</div>
<h4 className="font-mono text-sm leading-none">
{certification.providerName}
</h4>
</CardHeader>
<CardContent className="mt-2">Certificate ID: {certification.certificateId}</CardContent>
</Card>
);
})}
</Section>
)}
{RESUME_DATA.publication && RESUME_DATA.publication.length > 0 && (
<Section>
<h2 className="text-xl font-bold">Publications</h2>
{RESUME_DATA.publication.map((publication) => {
return (
<Card key={publication.name}>
<CardHeader>
<div className="flex items-center justify-between gap-x-2 text-base">
<h3 className="font-semibold leading-none">
<a
className="inline-flex gap-x-1.5 align-baseline leading-none hover:underline"
href={publication.link}
target="_blank"
>
{publication.name}
</a>
</h3>
<div className="text-sm tabular-nums text-gray-500">
{publication.issueDate}
</div>
</div>
<h4 className="font-mono text-sm leading-none">
{publication.providerName}
</h4>
</CardHeader>
<CardContent className="mt-2">{publication.description}</CardContent>
</Card>
);
})}
</Section>
)}
</section>

<CommandMenu
Expand Down
21 changes: 21 additions & 0 deletions src/data/resume-data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import {
YearProgressLogo,
} from "@/images/logos";
import { GitHubIcon, LinkedInIcon, XIcon } from "@/components/icons";
import { StaticImageData } from "next/image";

export const RESUME_DATA = {
name: "Bartosz Jarocki",
Expand Down Expand Up @@ -55,6 +56,7 @@ export const RESUME_DATA = {
{
school: "Wrocław University of Technology",
degree: "Bachelor's Degree in Control systems engineering and Robotics",
grade: "4.0",
start: "2007",
end: "2010",
},
Expand Down Expand Up @@ -275,4 +277,23 @@ export const RESUME_DATA = {
logo: CDGOLogo,
},
],
certification: [
{
name: "Google Cloud Certified - Associate Cloud Architect",
providerName: "Google Cloud",
link: "https://google.accredible.com/13f031af-b785-4224-bf86-0c7cccfd91c1?key=258dfc25da7a8b5c117f1e75c8892989ddc8cac9b8d635b0cd697a2fdb6497a5",
issueDate: "2023",
expirationDate: "2026",
certificateId: "ANaq1W"
},
],
publication: [
{
name: "A Block-Chain Based Approach for Food Supply Chain Management",
providerName: "IEEE",
link: "https://ieeexplore.ieee.org/document/9984473",
issueDate: "12/26/2022",
description:"This review paper examines many elements of food supply chain management and how blockchain may be used in supply chain management."
},
]
} as const;