diff --git a/Wave/Components/App.razor b/Wave/Components/App.razor index 785b2a2..317f778 100644 --- a/Wave/Components/App.razor +++ b/Wave/Components/App.razor @@ -12,22 +12,25 @@ - - - - - - - - - - - - - - + @if (!string.IsNullOrWhiteSpace(Customizations.Value.IconLink)) { + + } else { + + + + + + + + + + + + + + } diff --git a/Wave/Data/Customization.cs b/Wave/Data/Customization.cs index d58ab97..48951a7 100644 --- a/Wave/Data/Customization.cs +++ b/Wave/Data/Customization.cs @@ -8,5 +8,6 @@ public class Customization { public string DefaultLanguage { get; set; } = ""; public bool DefaultNarrowReader { get; set; } = false; public string LogoLink { get; set; } = ""; + public string IconLink { get; set; } = ""; public string Footer { get; set; } = ""; } \ No newline at end of file