diff --git a/app/Services/LandingService.php b/app/Services/LandingService.php index 798d1935b..7bd95f452 100644 --- a/app/Services/LandingService.php +++ b/app/Services/LandingService.php @@ -56,6 +56,7 @@ class LandingService 'open_registration' => (bool) $openReg, 'curated_onboarding' => (bool) config_cache('instance.curated_registration.enabled'), 'version' => config('pixelfed.version'), + 'logo' => config('app.logo'), 'about' => [ 'banner_image' => config_cache('app.banner_image') ?? url('/storage/headers/default.jpg'), 'short_description' => config_cache('app.short_description'), diff --git a/app/Util/Site/Config.php b/app/Util/Site/Config.php index dcc1f983a..f266793c1 100644 --- a/app/Util/Site/Config.php +++ b/app/Util/Site/Config.php @@ -30,6 +30,7 @@ class Config 'version' => config('pixelfed.version'), 'open_registration' => (bool) config_cache('pixelfed.open_registration'), 'show_legal_notice_link' => (bool) config('instance.has_legal_notice'), + 'logo' => config('app.logo'), 'uploader' => [ 'max_photo_size' => (int) config_cache('pixelfed.max_photo_size'), 'max_caption_length' => (int) config_cache('pixelfed.max_caption_length'), diff --git a/resources/assets/components/landing/sections/nav.vue b/resources/assets/components/landing/sections/nav.vue index 16dbfef1e..2103cde6b 100644 --- a/resources/assets/components/landing/sections/nav.vue +++ b/resources/assets/components/landing/sections/nav.vue @@ -2,7 +2,7 @@