Skip to content

Commit

Permalink
feat: add new features suggestions and supported by protofire
Browse files Browse the repository at this point in the history
  • Loading branch information
ajimeno04 authored and DenSmolonski committed Oct 18, 2024
1 parent fe9326e commit c8cd27e
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 7 deletions.
1 change: 1 addition & 0 deletions public/images/protofire-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 16 additions & 3 deletions src/components/common/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import packageJson from '../../../../package.json'
import ExternalLink from '../ExternalLink'
import MUILink from '@mui/material/Link'
import { HELP_CENTER_URL, IS_DEV, IS_OFFICIAL_HOST } from '@/config/constants'
import darkPalette from '@/components/theme/darkPalette'
import ProtofireLogo from '@/public/images/protofire-logo.svg'

const footerPages = [
AppRoutes.welcome.index,
Expand Down Expand Up @@ -93,9 +95,20 @@ const Footer = (): ReactElement | null => {
<SvgIcon component={GitHubIcon} inheritViewBox fontSize="inherit" sx={{ mr: 0.5 }} /> v{packageJson.version}
</ExternalLink>
</li>
{/* <li>
<AppstoreButton placement="footer" />
</li> */}
<li>
<Typography variant="caption">
Supported by{' '}
<SvgIcon
component={ProtofireLogo}
inheritViewBox
fontSize="small"
sx={{ verticalAlign: 'middle', mx: 0.5 }}
/>
<MUILink href="https://protofire.io" sx={{ color: darkPalette.primary.main, textDecoration: 'none' }}>
Protofire
</MUILink>
</Typography>
</li>
</ul>
</footer>
)
Expand Down
Loading

0 comments on commit c8cd27e

Please sign in to comment.