footer changed linkedin logo changed
This commit is contained in:
parent
4d0d905648
commit
10d85743d3
Binary file not shown.
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 3.9 KiB |
@ -1,17 +0,0 @@
|
|||||||
/* ----- Project Imports ----- */
|
|
||||||
import Details from "@/components/Details.jsx";
|
|
||||||
import Technologies from "@/components/Technologies.jsx";
|
|
||||||
import Projects from "@/components/Projects.jsx"
|
|
||||||
import "@/styles/content.css";
|
|
||||||
|
|
||||||
function Content() {
|
|
||||||
return (
|
|
||||||
<main className="contentContainer">
|
|
||||||
<Details />
|
|
||||||
<Technologies />
|
|
||||||
<Projects />
|
|
||||||
</main>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Content;
|
|
||||||
@ -8,7 +8,6 @@ function Details() {
|
|||||||
return (
|
return (
|
||||||
<article className="detailsContainer">
|
<article className="detailsContainer">
|
||||||
<section className="detailsSocialLinksContainer">
|
<section className="detailsSocialLinksContainer">
|
||||||
|
|
||||||
<a href="https://www.linkedin.com/in/paul-andrew-hughes/" target="_blank" ><img className="detailsSocialLinksImg" src="/linkedin.webp" alt="linkedin" /></a>
|
<a href="https://www.linkedin.com/in/paul-andrew-hughes/" target="_blank" ><img className="detailsSocialLinksImg" src="/linkedin.webp" alt="linkedin" /></a>
|
||||||
</section>
|
</section>
|
||||||
<section className="detailsTextContainer">
|
<section className="detailsTextContainer">
|
||||||
@ -20,7 +19,6 @@ function Details() {
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section className="detailsSocialLinksContainer">
|
<section className="detailsSocialLinksContainer">
|
||||||
|
|
||||||
<a href="https://github.com/II-Paulus-II" target="_blank" ><img className="detailsSocialLinksImg" src="/github.webp" alt="github" /></a>
|
<a href="https://github.com/II-Paulus-II" target="_blank" ><img className="detailsSocialLinksImg" src="/github.webp" alt="github" /></a>
|
||||||
</section>
|
</section>
|
||||||
</article>
|
</article>
|
||||||
|
|||||||
@ -4,8 +4,10 @@ import "@/styles/footer.css"
|
|||||||
|
|
||||||
function Footer() {
|
function Footer() {
|
||||||
return (
|
return (
|
||||||
<footer className="project-footer">
|
<footer className="projectFooter">
|
||||||
<p className="footer-text">© paul hughes</p>
|
<a href="https://www.linkedin.com/in/paul-andrew-hughes/" target="_blank" ><img className="footerSocialLinksImg" src="/linkedin.webp" alt="linkedin" /></a>
|
||||||
|
<p className="footerText">© paul hughes</p>
|
||||||
|
<a href="https://github.com/II-Paulus-II" target="_blank" ><img className="footerSocialLinksImg" src="/github.webp" alt="github" /></a>
|
||||||
</footer>
|
</footer>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,5 +1,9 @@
|
|||||||
.project-footer {
|
.projectFooter {
|
||||||
display: block;
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 3rem;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
left: 0;
|
left: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
@ -8,9 +12,12 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-text {
|
.footerText {
|
||||||
color: white;
|
color: white;
|
||||||
font-size: 1rem;
|
font-size: 1.2rem;
|
||||||
padding: 1rem 0.5rem;
|
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footerSocialLinksImg {
|
||||||
|
max-height: 2rem;
|
||||||
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user