From 7fb82ee291f37887b6c6d1f85a66d9ffc6d47654 Mon Sep 17 00:00:00 2001 From: David Paul Graham Date: Fri, 29 Sep 2023 14:00:00 +0100 Subject: [PATCH] add download button on resume page --- src/features/Resume/Resume.tsx | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/src/features/Resume/Resume.tsx b/src/features/Resume/Resume.tsx index 666d064..8b230fd 100644 --- a/src/features/Resume/Resume.tsx +++ b/src/features/Resume/Resume.tsx @@ -1,7 +1,18 @@ +import { Download } from "@mui/icons-material"; +import { Box, Fab } from "@mui/material"; import { CloudChallengeResume } from "components/CloudChallengeResume"; import { useTitle } from "hooks"; import React from "react"; +const fabStyle = { + margin: 0, + top: "auto", + right: 20, + bottom: 20, + left: "auto", + position: "fixed", +}; + /** * This Resume is, primarily in HTML and css as part of the cloud resume challenge. * @constructor @@ -9,5 +20,20 @@ import React from "react"; export function Resume() { // ToDo - Add a way to download PDF resume useTitle("Resume"); - return ; + return ( + + + + + Download pdf + + + ); }