Final pre release fixes and improvements

This commit is contained in:
2023-08-05 23:52:11 +01:00
parent 25b1250df7
commit f0fbb3aaac
14 changed files with 95 additions and 24 deletions

View File

@@ -4,6 +4,21 @@ import projectData from "@/src/portfolio/data/projectData";
import styles from "../styling/projects.module.scss";
const Projects = () => {
const otherLinks = [
{
title: "Github",
link: "https://github.com/KuchtaVR6/"
},
{
title: "LinkedIn",
link: "https://linkedin.com/in/kuchtap"
},
{
title: "Curriculum Vitae",
link: "/PatrykKuchta_CV.pdf"
}
];
return (
<div className={styles.section} id={"projects"}>
<Splide
@@ -21,6 +36,23 @@ const Projects = () => {
}
</Splide>
<div data-aos = {"fade-left"} className={styles.otherLinks}>
<h2>Other useful links about me:</h2>
<ul>
{
otherLinks.map(({title, link}, key) => {
return (
<li key = {key}>
<a href={link}>
{title}
</a>
</li>
);
}
)
}
</ul>
</div>
</div>
);
};