diff --git a/.env.template b/.env.template index 3268c523..cff882ce 100644 --- a/.env.template +++ b/.env.template @@ -4,7 +4,7 @@ VITE_PLATFORM_URL=https://flotilla.social VITE_PLATFORM_TERMS=https://flotilla.social/terms VITE_PLATFORM_PRIVACY=https://flotilla.social/privacy VITE_PLATFORM_NAME=Flotilla -VITE_PLATFORM_LOGO=static/flotilla.png +VITE_PLATFORM_LOGO=static/logo.png VITE_PLATFORM_RELAYS= VITE_PLATFORM_ACCENT="#7161FF" VITE_PLATFORM_SECONDARY="#EB5E28" diff --git a/src/app/core/state.ts b/src/app/core/state.ts index 8bc75cff..636487f8 100644 --- a/src/app/core/state.ts +++ b/src/app/core/state.ts @@ -124,7 +124,7 @@ export const PLATFORM_TERMS = import.meta.env.VITE_PLATFORM_TERMS export const PLATFORM_PRIVACY = import.meta.env.VITE_PLATFORM_PRIVACY -export const PLATFORM_LOGO = PLATFORM_URL + "/pwa-192x192.png" +export const PLATFORM_LOGO = PLATFORM_URL + "/logo.png" export const PLATFORM_NAME = import.meta.env.VITE_PLATFORM_NAME diff --git a/static/flotilla.png b/static/flotilla.png deleted file mode 100644 index 3f35cabb..00000000 Binary files a/static/flotilla.png and /dev/null differ diff --git a/static/logo.png b/static/logo.png new file mode 100644 index 00000000..79448344 Binary files /dev/null and b/static/logo.png differ