Skip to content

Commit 78c7f2b

Browse files
committed
Add CTAs for GitHub source and LinkedIn
1 parent 5a8f674 commit 78c7f2b

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

src/App.jsx

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
AccordionDetails,
1818
Box,
1919
} from "@mui/material";
20-
import { Add, Delete, FileCopy } from "@mui/icons-material";
20+
import { Add, Delete, FileCopy, GitHub, LinkedIn } from "@mui/icons-material";
2121
import { useBoundStore } from "./stores";
2222

2323
function App() {
@@ -327,6 +327,38 @@ function App() {
327327
</AccordionDetails>
328328
)}
329329
</Accordion>
330+
331+
<Box mt={4} textAlign="center">
332+
<Typography variant="body2">Created by James Croft.</Typography>
333+
</Box>
334+
<Box
335+
sx={{
336+
display: "flex",
337+
flexDirection: "column",
338+
mt: 2,
339+
gap: 1,
340+
}}
341+
>
342+
<Button
343+
fullWidth
344+
variant="outlined"
345+
color="dark"
346+
startIcon={<GitHub />}
347+
href="https://github.com/jamesmcroft/openai-image-token-calculator"
348+
target="_blank"
349+
>
350+
View Source on GitHub
351+
</Button>
352+
<Button
353+
variant="outlined"
354+
color="primary"
355+
startIcon={<LinkedIn />}
356+
href="https://www.linkedin.com/in/jmcroft"
357+
target="_blank"
358+
>
359+
View Profile on LinkedIn
360+
</Button>
361+
</Box>
330362
</Grid>
331363
</Grid>
332364
</Container>

0 commit comments

Comments
 (0)