nile/src/pages/resume/Resume.jsx

28 lines
764 B
React
Raw Normal View History

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