added links to details component

This commit is contained in:
II-Paulus-II 2024-03-06 12:56:34 +00:00
parent 67de36560d
commit 7fa3e01bb3
5 changed files with 22 additions and 3 deletions

BIN
public/github.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
public/linkedin.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@ -5,9 +5,11 @@ import "@/styles/details.css";
function Details() {
return (
<article className="detailsContainer">
<p>This be some details</p>
<a href="#tech">Technologies</a>
<a href="#projects">Projects</a>
<h1 className="detailsTitle">Paul Hughes</h1>
<a className="detailsLinks" href="#tech">Technologies</a>
<a className="detailsLinks" href="#projects">Projects</a>
<a href="https://github.com/II-Paulus-II" ><img className="detailsSocialLinks" src="/github.webp" alt="github" /></a>
<a href="https://www.linkedin.com/in/paul-andrew-hughes/" ><img className="detailsSocialLinks" src="/linkedin.webp" alt="linkedin" /></a>
</article>
);
};

0
src/data/techdata.js Normal file
View File

View File

@ -2,3 +2,20 @@
padding: 3rem;
min-height: 100vh;
}
.detailsTitle {
}
.detailsProfileImage {
}
.detailsLinks {
}
.detailsSocialLinks {
}