Skip to content

Commit

Permalink
Icons fixed on about.
Browse files Browse the repository at this point in the history
  • Loading branch information
soup-bowl committed Nov 26, 2023
1 parent 6e40494 commit 445fdf6
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions src/pages/help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,21 @@ export const AboutPage = () => {
}
</Stack>
<Stack my={2} spacing={2} direction="row" justifyContent="center">
<Button onClick={() => (window.location.reload())} variant="contained" color="error"><CachedIcon />&nbsp;Reload</Button>
<Button href="https://github.com/soup-bowl/whatsth.is" variant="contained"><GitHubIcon />&nbsp;Source Code</Button>
<Button
onClick={() => (window.location.reload())}
variant="contained"
color="error"
startIcon={<CachedIcon />}
>
Reload
</Button>
<Button
href="https://github.com/soup-bowl/whatsth.is"
variant="contained"
startIcon={<GitHubIcon />}
>
Source Code
</Button>
</Stack>
<Typography variant="h1" my={2}>Donate</Typography>
{wallets.map((wallet, i) => (
Expand Down

0 comments on commit 445fdf6

Please sign in to comment.