[FEATURE] Add Resume Download Button (#18)

Co-authored-by: Dunemask <dunemask@gmail.com>
Reviewed-on: https://gitea.dunemask.dev/elysium/nile/pulls/18
This commit is contained in:
dunemask 2024-01-11 16:45:45 +00:00
parent e6b653bc2a
commit 45a8b6e538
4 changed files with 17 additions and 13 deletions

View file

@ -68,11 +68,13 @@ export default function Contact() {
title="Email" title="Email"
info="elijahglennparker@outlook.com" info="elijahglennparker@outlook.com"
/> />
{<ContactStrip {
<ContactStrip
icon={PhoneIphoneIcon} icon={PhoneIphoneIcon}
title="Text/Call" title="Text/Call"
info="+1 (385) 595 8161" info="+1 (385) 595 8161"
/>} />
}
</Box> </Box>
<Box <Box
className="messaging" className="messaging"

View file

@ -16,7 +16,7 @@ const people = [
linkedin: "https://www.linkedin.com/in/pedrof-software-practitioner", linkedin: "https://www.linkedin.com/in/pedrof-software-practitioner",
reference: `A couple of year ago Elijah was an intern in my team. He is a skilled developer. On top of contributing by writing automated tests he alone developed an application to manage: Start, stop, monitor, and help debug the tests. reference: `A couple of year ago Elijah was an intern in my team. He is a skilled developer. On top of contributing by writing automated tests he alone developed an application to manage: Start, stop, monitor, and help debug the tests.
I recommend anyone who wants a fast and extremely productive developer to hire Elijah.` I recommend anyone who wants a fast and extremely productive developer to hire Elijah.`,
}, },
{ {
name: "Trevor Ah Sue", name: "Trevor Ah Sue",

View file

@ -1,26 +1,28 @@
import React from "react"; import React from "react";
import { Link } from "react-router-dom"; import Link from "@mui/material/Link";
import Box from "@mui/material/Box"; import Box from "@mui/material/Box";
import Typography from "@mui/material/Typography"; import Typography from "@mui/material/Typography";
import ContentWrapper from "../../components/ContentWrapper"; import ContentWrapper from "../../components/ContentWrapper";
import References from "./References.jsx"; import References from "./References.jsx";
const resumeLink = "/portfolio/resume/Elijah%20Parker%20Resume.pdf";
export default function Resume() { export default function Resume() {
return ( return (
<Box id="resume"> <Box id="resume">
<ContentWrapper> <ContentWrapper>
<References /> <References />
{/*<Box sx={{ marginBottom: "4rem" }}> <Box sx={{ marginBottom: "4rem" }}>
<Typography <Typography
variant="h4" variant="h5"
sx={{ textDecoration: "none", color: "inherit" }} sx={{ textDecoration: "none", color: "inherit" }}
component={Link} component={Link}
to="/portfolio/resume/Elijah%20Parker%20Resume.pdf" href={resumeLink}
download download
> >
Download Resume Download Resume
</Typography> </Typography>
</Box>*/} </Box>
</ContentWrapper> </ContentWrapper>
</Box> </Box>
); );

View file

@ -19,7 +19,7 @@ export default () => {
"@": path.resolve("./src"), "@": path.resolve("./src"),
"@components": path.resolve("./src/components"), "@components": path.resolve("./src/components"),
"@images": path.resolve("./src/images"), "@images": path.resolve("./src/images"),
"@css": path.resolve("./src/css") "@css": path.resolve("./src/css"),
}, },
}, },
}); });