[FEATURE] Uploaded Resume (#14)

Co-authored-by: dunemask <dunemask@gmail.com>
Reviewed-on: https://gitea.dunemask.dev/elysium/nile/pulls/14
This commit is contained in:
dunemask 2023-10-27 21:33:03 +00:00
parent f45bbfec99
commit da36ac25d8
6 changed files with 7099 additions and 2 deletions

View file

@ -1,5 +1,7 @@
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";
@ -8,6 +10,17 @@ export default function Resume() {
<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>
);