Skip to content

Commit c8cd27e

Browse files
ajimeno04DenSmolonski
authored andcommitted
feat: add new features suggestions and supported by protofire
1 parent fe9326e commit c8cd27e

File tree

4 files changed

+58
-7
lines changed

4 files changed

+58
-7
lines changed

public/images/protofire-logo.svg

Lines changed: 1 addition & 0 deletions
Loading

src/components/common/Footer/index.tsx

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import packageJson from '../../../../package.json'
1010
import ExternalLink from '../ExternalLink'
1111
import MUILink from '@mui/material/Link'
1212
import { HELP_CENTER_URL, IS_DEV, IS_OFFICIAL_HOST } from '@/config/constants'
13+
import darkPalette from '@/components/theme/darkPalette'
14+
import ProtofireLogo from '@/public/images/protofire-logo.svg'
1315

1416
const footerPages = [
1517
AppRoutes.welcome.index,
@@ -93,9 +95,20 @@ const Footer = (): ReactElement | null => {
9395
<SvgIcon component={GitHubIcon} inheritViewBox fontSize="inherit" sx={{ mr: 0.5 }} /> v{packageJson.version}
9496
</ExternalLink>
9597
</li>
96-
{/* <li>
97-
<AppstoreButton placement="footer" />
98-
</li> */}
98+
<li>
99+
<Typography variant="caption">
100+
Supported by{' '}
101+
<SvgIcon
102+
component={ProtofireLogo}
103+
inheritViewBox
104+
fontSize="small"
105+
sx={{ verticalAlign: 'middle', mx: 0.5 }}
106+
/>
107+
<MUILink href="https://protofire.io" sx={{ color: darkPalette.primary.main, textDecoration: 'none' }}>
108+
Protofire
109+
</MUILink>
110+
</Typography>
111+
</li>
99112
</ul>
100113
</footer>
101114
)

0 commit comments

Comments
 (0)