diff --git a/app/helpers/branding_helper.rb b/app/helpers/branding_helper.rb index 8201f36e3c..c2b833de9d 100644 --- a/app/helpers/branding_helper.rb +++ b/app/helpers/branding_helper.rb @@ -11,14 +11,14 @@ module BrandingHelper end def _logo_as_symbol_wordmark - content_tag(:svg, tag.use(href: '#logo-symbol-wordmark'), viewBox: '0 0 261 66', class: 'logo logo--wordmark') + image_tag(frontend_asset_path('images/logo-symbol-wordmark.png'), alt: 'Mastodon', class: 'logo logo--wordmark') end def _logo_as_symbol_icon - content_tag(:svg, tag.use(href: '#logo-symbol-icon'), viewBox: '0 0 79 79', class: 'logo logo--icon') + image_tag(frontend_asset_path('images/logo.png'), alt: 'Mastodon', class: 'logo logo--icon') end def render_logo - image_tag(frontend_asset_path('images/logo.svg'), alt: 'Mastodon', class: 'logo logo--icon') + image_tag(frontend_asset_path('images/logo.png'), alt: 'Mastodon', class: 'logo logo--icon') end end