[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

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 77 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

View file

@ -43,7 +43,7 @@ export default function About() {
<Box sx={{ display: "flex", flexWrap: "wrap" }}>
{!fullSizePhoto && (
<img
src="/resume/About.jpeg"
src="/portfolio/resume/About.jpeg"
style={{
width: "100%",
maxWidth: "400px",
@ -55,7 +55,7 @@ export default function About() {
)}
{fullSizePhoto && (
<img
src="/resume/About.jpeg"
src="/portfolio/resume/About.jpeg"
style={{
width: "90%",
height: "90%",

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>
);