From a6712c62cef198f58f637bc86f7978deff207c1e Mon Sep 17 00:00:00 2001 From: Arash Sabet Date: Thu, 16 Apr 2026 21:51:54 -0400 Subject: [PATCH 1/2] Add Umplify logo SVG assets Add four brand SVG files: horizontal wordmark (dark and light variants), standalone mark (app icon), and stacked/centered wordmark. These scalable assets provide the 'Activated I' wordmark and mark with appropriate colors, sizes, and alignment for use across the app and marketing materials. --- .../logos/umplify-logo-horizontal-dark.svg | 14 ++++++++++++++ .../logos/umplify-logo-horizontal-light.svg | 15 +++++++++++++++ assets/images/logos/umplify-logo-mark.svg | 19 +++++++++++++++++++ assets/images/logos/umplify-logo-stacked.svg | 16 ++++++++++++++++ 4 files changed, 64 insertions(+) create mode 100644 assets/images/logos/umplify-logo-horizontal-dark.svg create mode 100644 assets/images/logos/umplify-logo-horizontal-light.svg create mode 100644 assets/images/logos/umplify-logo-mark.svg create mode 100644 assets/images/logos/umplify-logo-stacked.svg diff --git a/assets/images/logos/umplify-logo-horizontal-dark.svg b/assets/images/logos/umplify-logo-horizontal-dark.svg new file mode 100644 index 0000000..7390732 --- /dev/null +++ b/assets/images/logos/umplify-logo-horizontal-dark.svg @@ -0,0 +1,14 @@ + + + + + umplify + + + + diff --git a/assets/images/logos/umplify-logo-horizontal-light.svg b/assets/images/logos/umplify-logo-horizontal-light.svg new file mode 100644 index 0000000..4243171 --- /dev/null +++ b/assets/images/logos/umplify-logo-horizontal-light.svg @@ -0,0 +1,15 @@ + + + + + umplify + + + + diff --git a/assets/images/logos/umplify-logo-mark.svg b/assets/images/logos/umplify-logo-mark.svg new file mode 100644 index 0000000..2b22b09 --- /dev/null +++ b/assets/images/logos/umplify-logo-mark.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/assets/images/logos/umplify-logo-stacked.svg b/assets/images/logos/umplify-logo-stacked.svg new file mode 100644 index 0000000..9201772 --- /dev/null +++ b/assets/images/logos/umplify-logo-stacked.svg @@ -0,0 +1,16 @@ + + + + + umplify + + + + From 99fad02f6836482a30ebd922043a837701ac4999 Mon Sep 17 00:00:00 2001 From: Arash Sabet Date: Thu, 16 Apr 2026 21:54:47 -0400 Subject: [PATCH 2/2] Add masthead logo support with title fallback Introduce a site logo setting and update masthead markup to prefer an image logo when available, falling back to the masthead title link when not. _config.yml adds a logo path and clears masthead_title; _includes/masthead.html now renders an with site.title as alt when a logo exists and otherwise renders the existing title/subtitle link (also removed the duplicated title block). This improves branding and accessibility by using the configured logo and sensible alt text. --- _config.yml | 3 ++- _includes/masthead.html | 11 ++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/_config.yml b/_config.yml index 15679ab..a5468d6 100644 --- a/_config.yml +++ b/_config.yml @@ -21,7 +21,8 @@ baseurl : repository : "Umplify/umplify" teaser : "/assets/images/revamp/hero-ai.svg" -masthead_title : Umplify +logo : "/assets/images/logos/umplify-logo-horizontal-light.svg" +masthead_title : " " breadcrumbs : true words_per_minute : 200 comments: diff --git a/_includes/masthead.html b/_includes/masthead.html index 0c66aa6..eb93447 100644 --- a/_includes/masthead.html +++ b/_includes/masthead.html @@ -5,12 +5,13 @@