[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:
parent
e6b653bc2a
commit
45a8b6e538
4 changed files with 17 additions and 13 deletions
|
@ -1,26 +1,28 @@
|
|||
import React from "react";
|
||||
import { Link } from "react-router-dom";
|
||||
import Link from "@mui/material/Link";
|
||||
import Box from "@mui/material/Box";
|
||||
import Typography from "@mui/material/Typography";
|
||||
import ContentWrapper from "../../components/ContentWrapper";
|
||||
import References from "./References.jsx";
|
||||
|
||||
const resumeLink = "/portfolio/resume/Elijah%20Parker%20Resume.pdf";
|
||||
|
||||
export default function Resume() {
|
||||
return (
|
||||
<Box id="resume">
|
||||
<ContentWrapper>
|
||||
<References />
|
||||
{/*<Box sx={{ marginBottom: "4rem" }}>
|
||||
<Box sx={{ marginBottom: "4rem" }}>
|
||||
<Typography
|
||||
variant="h4"
|
||||
variant="h5"
|
||||
sx={{ textDecoration: "none", color: "inherit" }}
|
||||
component={Link}
|
||||
to="/portfolio/resume/Elijah%20Parker%20Resume.pdf"
|
||||
href={resumeLink}
|
||||
download
|
||||
>
|
||||
Download Resume
|
||||
</Typography>
|
||||
</Box>*/}
|
||||
</Box>
|
||||
</ContentWrapper>
|
||||
</Box>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue