2023-09-25 20:49:09 +00:00
|
|
|
import React from "react";
|
2024-01-11 16:45:45 +00:00
|
|
|
import Link from "@mui/material/Link";
|
2023-09-25 20:49:09 +00:00
|
|
|
import Box from "@mui/material/Box";
|
2023-10-27 21:33:03 +00:00
|
|
|
import Typography from "@mui/material/Typography";
|
2023-09-25 20:49:09 +00:00
|
|
|
import ContentWrapper from "../../components/ContentWrapper";
|
|
|
|
import References from "./References.jsx";
|
|
|
|
|
2024-01-11 16:45:45 +00:00
|
|
|
const resumeLink = "/portfolio/resume/Elijah%20Parker%20Resume.pdf";
|
|
|
|
|
2023-09-25 20:49:09 +00:00
|
|
|
export default function Resume() {
|
|
|
|
return (
|
|
|
|
<Box id="resume">
|
|
|
|
<ContentWrapper>
|
|
|
|
<References />
|
2024-01-11 16:45:45 +00:00
|
|
|
<Box sx={{ marginBottom: "4rem" }}>
|
2023-10-27 21:33:03 +00:00
|
|
|
<Typography
|
2024-01-11 16:45:45 +00:00
|
|
|
variant="h5"
|
2023-10-27 21:33:03 +00:00
|
|
|
sx={{ textDecoration: "none", color: "inherit" }}
|
|
|
|
component={Link}
|
2024-01-11 16:45:45 +00:00
|
|
|
href={resumeLink}
|
2023-10-27 21:33:03 +00:00
|
|
|
download
|
|
|
|
>
|
|
|
|
Download Resume
|
|
|
|
</Typography>
|
2024-01-11 16:45:45 +00:00
|
|
|
</Box>
|
2023-09-25 20:49:09 +00:00
|
|
|
</ContentWrapper>
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
}
|