[chore/frontend] Use smaller webp images for logo and default avatars (#3119)
|
|
@ -1,6 +1,7 @@
|
|||
The following files and subdirectories in this directory are licensed under the Creative Commons Attribution-ShareAlike 4.0 International License:
|
||||
|
||||
- logo.png (sloth logo)
|
||||
- logo.webp (sloth logo)
|
||||
- logo.svg (sloth logo)
|
||||
- ./default_avatars/* (all default avatars)
|
||||
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 8.2 KiB |
BIN
web/assets/default_avatars/GoToSocial_icon1.webp
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
|
Before Width: | Height: | Size: 8.6 KiB |
BIN
web/assets/default_avatars/GoToSocial_icon2.webp
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 16 KiB |
BIN
web/assets/default_avatars/GoToSocial_icon3.webp
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
|
Before Width: | Height: | Size: 17 KiB |
BIN
web/assets/default_avatars/GoToSocial_icon4.webp
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
|
Before Width: | Height: | Size: 16 KiB |
BIN
web/assets/default_avatars/GoToSocial_icon5.webp
Normal file
|
After Width: | Height: | Size: 9.6 KiB |
|
Before Width: | Height: | Size: 14 KiB |
BIN
web/assets/default_avatars/GoToSocial_icon6.webp
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
|
Before Width: | Height: | Size: 67 B |
BIN
web/assets/default_header.webp
Normal file
|
After Width: | Height: | Size: 30 B |
BIN
web/assets/logo.webp
Normal file
|
After Width: | Height: | Size: 17 KiB |
|
|
@ -24,7 +24,7 @@ import sanitize from "sanitize-html";
|
|||
|
||||
export function FakeStatus({ children }) {
|
||||
const { data: account = {
|
||||
avatar: "/assets/default_avatars/GoToSocial_icon1.png",
|
||||
avatar: "/assets/default_avatars/GoToSocial_icon1.webp",
|
||||
display_name: "",
|
||||
username: ""
|
||||
} } = useVerifyCredentialsQuery();
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@
|
|||
/>
|
||||
{{- else }}
|
||||
<img
|
||||
src="/assets/logo.png"
|
||||
src="/assets/logo.webp"
|
||||
loading="lazy"
|
||||
{{- if .Description }}
|
||||
alt="{{- .Description -}}"
|
||||
|
|
@ -134,7 +134,7 @@ media photoswipe-gallery {{ (len .) | oddOrEven }} {{ if eq (len .) 1 }}single{{
|
|||
data-pswp-width="{{- $media.Meta.Small.Width -}}px"
|
||||
data-pswp-height="{{- $media.Meta.Small.Height -}}px"
|
||||
{{- else }}
|
||||
poster="/assets/logo.png"
|
||||
poster="/assets/logo.webp"
|
||||
width="518px"
|
||||
height="460px"
|
||||
{{- end }}
|
||||
|
|
|
|||