Add "Install App" button to the toolbar using react-use-pwa-install library

This commit is contained in:
geoffsee
2025-07-01 15:21:54 -04:00
committed by Geoff Seemueller
parent c0428094c8
commit e72198628c
5 changed files with 42 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ import { Flex } from '@chakra-ui/react';
import React from 'react';
import BuiltWithButton from '../BuiltWithButton';
import InstallButton from '../InstallButton.tsx';
import GithubButton from './GithubButton';
import SupportThisSiteButton from './SupportThisSiteButton';
@@ -17,6 +18,7 @@ function ToolBar({ isMobile }) {
alignItems={isMobile ? 'flex-start' : 'flex-end'}
pb={4}
>
<InstallButton />
<SupportThisSiteButton />
<GithubButton />
<BuiltWithButton />