diff --git a/src/blobdash/settings.py b/src/blobdash/settings.py index ccba0ec..3fa54d4 100644 --- a/src/blobdash/settings.py +++ b/src/blobdash/settings.py @@ -29,14 +29,14 @@ class DashdotSettings(BaseModel): class Service(BaseModel): name: str = "service" desc: str = "a cool service" - icon: str = "https://www.pngmart.com/files/11/Rickrolling-PNG-Pic.png" + icon: str = "/static/blobcat.png" url: str = "https://google.com" class Settings(BaseSettings): - name: str = "exampledash" - logo: str = "https://www.pngmart.com/files/11/Rickrolling-PNG-Pic.png" - accent_color: color.Color = "#dc2626" + name: str = "mydash" + logo: str = "/static/blobcat.png" + accent_color: color.Color = "#fcc21b" service_domain: str = "example.com" about: str = """ diff --git a/src/blobdash/static/blobcat.png b/src/blobdash/static/blobcat.png new file mode 100644 index 0000000..cfc40bb Binary files /dev/null and b/src/blobdash/static/blobcat.png differ