2023-09-25 20:49:09 +00:00
|
|
|
import React from "react";
|
2023-10-27 21:33:03 +00:00
|
|
|
import { Link } from "react-router-dom";
|
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";
|
|
|
|
|
|
|
|
export default function Resume() {
|
|
|
|
return (
|
|
|
|
<Box id="resume">
|
|
|
|
<ContentWrapper>
|
|
|
|
<References />
|
2023-10-27 15:41:23 -06:00
|
|
|
{/*<Box sx={{ marginBottom: "4rem" }}>
|
2023-10-27 21:33:03 +00:00
|
|
|
<Typography
|
|
|
|
variant="h4"
|
|
|
|
sx={{ textDecoration: "none", color: "inherit" }}
|
|
|
|
component={Link}
|
|
|
|
to="/portfolio/resume/Elijah%20Parker%20Resume.pdf"
|
|
|
|
download
|
|
|
|
>
|
|
|
|
Download Resume
|
|
|
|
</Typography>
|
2023-10-27 15:41:23 -06:00
|
|
|
</Box>*/}
|
2023-09-25 20:49:09 +00:00
|
|
|
</ContentWrapper>
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
}
|