diff --git a/common/src/hosting/constants.ts b/common/src/hosting/constants.ts index 34e5297f..156573cc 100644 --- a/common/src/hosting/constants.ts +++ b/common/src/hosting/constants.ts @@ -24,6 +24,6 @@ if (IS_LOCAL && !process.env.ENVIRONMENT && !process.env.NEXT_PUBLIC_FIREBASE_EN export const SENTRY_DSN = 'https://4e5d3b0aa566e8aaae97298398a1ad37@o4510975610060800.ingest.de.sentry.io/4510975611699280' -export const PNG_FAVICON = 'https://www.compassmeet.com/images/github-logo.png' +export const PNG_LOGO = 'https://www.compassmeet.com/icons/icon-512x512.png' // console.log('IS_LOCAL_ANDROID', IS_LOCAL_ANDROID) diff --git a/web/pages/_app.tsx b/web/pages/_app.tsx index 9db92650..4f182784 100644 --- a/web/pages/_app.tsx +++ b/web/pages/_app.tsx @@ -8,7 +8,7 @@ import {StatusBar} from '@capacitor/status-bar' import * as Sentry from '@sentry/node' import clsx from 'clsx' import {DEPLOYED_WEB_URL} from 'common/envs/constants' -import {IS_VERCEL, PNG_FAVICON} from 'common/hosting/constants' +import {IS_VERCEL, PNG_LOGO} from 'common/hosting/constants' import {debug} from 'common/logger' import {isUrl} from 'common/parsing' import type {AppProps} from 'next/app' @@ -197,14 +197,14 @@ function MyApp(props: AppProps) { - + {/*Twitter/X tags — separate!*/} - + {/**/} {/**/} diff --git a/web/public/icons/icon-512x512.png b/web/public/icons/icon-512x512.png new file mode 100644 index 00000000..94936c22 Binary files /dev/null and b/web/public/icons/icon-512x512.png differ