logo update

This commit is contained in:
Amit Rana 2026-04-08 13:07:16 +05:30
parent f6fd1a769a
commit 28c02c645a
3 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,11 @@
if (document.getElementById('sh-header')) return; if (document.getElementById('sh-header')) return;
// ─── Config: update nav links here ────────────────────────────── // ─── Config: update nav links here ──────────────────────────────
var LOGO_URL = 'https://quantumtaskai.com/img/logo.png'; var LOGO_URL = (function() {
// Works locally and on live domain without hardcoding
var base = window.location.origin;
return base + '/img/logo.png';
})();
var HOME_URL = 'https://quantumtaskai.com'; var HOME_URL = 'https://quantumtaskai.com';
var NAV_LINKS = [ var NAV_LINKS = [

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB