diff --git a/app.js b/app.js index 2974a2d..3adea39 100644 --- a/app.js +++ b/app.js @@ -5,11 +5,13 @@ var btn = document.getElementById('themeToggle'); var iconSun = document.getElementById('iconSun'); var iconMoon = document.getElementById('iconMoon'); + var logo = document.getElementById('headerLogo'); function syncIcons() { var isLight = document.body.classList.contains('light'); iconSun.style.display = isLight ? 'none' : ''; iconMoon.style.display = isLight ? '' : 'none'; + if (logo) logo.src = isLight ? './images/urunc-logo-light.svg' : './images/urunc-logo-dark.svg'; } syncIcons(); diff --git a/images/architecture.excalidraw.png b/images/architecture.excalidraw.png new file mode 100644 index 0000000..944bca8 Binary files /dev/null and b/images/architecture.excalidraw.png differ diff --git a/images/favicon-32x32.png b/images/favicon-32x32.png new file mode 100644 index 0000000..c0e0332 Binary files /dev/null and b/images/favicon-32x32.png differ diff --git a/images/favicon.ico b/images/favicon.ico new file mode 100644 index 0000000..316e6c8 Binary files /dev/null and b/images/favicon.ico differ diff --git a/images/urunc-logo-dark.svg b/images/urunc-logo-dark.svg new file mode 100644 index 0000000..87eccfa --- /dev/null +++ b/images/urunc-logo-dark.svg @@ -0,0 +1,57 @@ + + + + diff --git a/images/urunc-logo-light.svg b/images/urunc-logo-light.svg new file mode 100644 index 0000000..a1623ec --- /dev/null +++ b/images/urunc-logo-light.svg @@ -0,0 +1,57 @@ + + + + diff --git a/index.html b/index.html index 1fe55f4..c6d7fe3 100644 --- a/index.html +++ b/index.html @@ -4,13 +4,18 @@