Skip to content

Commit

Permalink
Add CTAs for GitHub source and LinkedIn
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmcroft committed Sep 26, 2024
1 parent 5a8f674 commit 78c7f2b
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
AccordionDetails,
Box,
} from "@mui/material";
import { Add, Delete, FileCopy } from "@mui/icons-material";
import { Add, Delete, FileCopy, GitHub, LinkedIn } from "@mui/icons-material";
import { useBoundStore } from "./stores";

function App() {
Expand Down Expand Up @@ -327,6 +327,38 @@ function App() {
</AccordionDetails>
)}
</Accordion>

<Box mt={4} textAlign="center">
<Typography variant="body2">Created by James Croft.</Typography>
</Box>
<Box
sx={{
display: "flex",
flexDirection: "column",
mt: 2,
gap: 1,
}}
>
<Button
fullWidth
variant="outlined"
color="dark"
startIcon={<GitHub />}
href="https://github.com/jamesmcroft/openai-image-token-calculator"
target="_blank"
>
View Source on GitHub
</Button>
<Button
variant="outlined"
color="primary"
startIcon={<LinkedIn />}
href="https://www.linkedin.com/in/jmcroft"
target="_blank"
>
View Profile on LinkedIn
</Button>
</Box>
</Grid>
</Grid>
</Container>
Expand Down

0 comments on commit 78c7f2b

Please sign in to comment.