windhamdavid 1 week ago
parent
commit
45881b1c45
2 changed files with 6 additions and 5 deletions
  1. 1 0
      lists/now/now.md
  2. 5 5
      src/clientModules/nav-underline.js

+ 1 - 0
lists/now/now.md

@@ -13,6 +13,7 @@ Adding this list as a way to pull info for my main now page @ https://davidawind
 
 ## Log
 
+- **26/07/20** - watering ๐Ÿชด daily ๐Ÿฅต, changed ๐Ÿ›๏ธ-โฐ to get up before the โ˜€๏ธ.  
 - **26/05/23** - major ๐Ÿ–ฅ๏ธ [project](/notes/house/studio/) almost wrapped and new mudroom [floors](/notes/house).
 - **26/03/20** - 400 ๐ŸŒท bulbs we [planted](/notes/garden) coming in, ๐Ÿฆท crown, & more ๐Ÿค– [AI](/posts/mcp).
 - **26/01/18** - ๐Ÿ’ป [projects](/docs/computers/kos) while it's cold ๐Ÿฅถ - [dog](/notes/dogs/iris) ๐Ÿฆฎ walking and ๐Ÿ’€ [doom-scrolling](/posts/monopoly) daily. 

+ 5 - 5
src/clientModules/nav-underline.js

@@ -1,5 +1,5 @@
 /**
- * Site offcanvas top-nav โ€” mirrors the parent site (davidawindham.com).
+ * Site offcanvas top-nav โ€” mirrors the parent site (davidwindham.com).
  * The "David A. Windham" brand (a .dw-brand in the navbar) opens a slide-down
  * bar with About/Desk/Studio/Work and a "magic line" underline that follows the
  * hovered item. Injected at <body> level (not inside the navbar) because the
@@ -14,10 +14,10 @@ if (typeof document !== 'undefined') {
     '<div class="dw-offcanvas" id="dw-nav" role="dialog" aria-label="Site navigation">' +
       '<nav class="dw-offcanvas-nav">' +
         '<ul class="dw-nav">' +
-          '<li><a href="https://davidawindham.com/about">About</a></li>' +
-          '<li><a href="https://davidawindham.com/desk">Desk</a></li>' +
-          '<li><a href="https://davidawindham.com/studio">Studio</a></li>' +
-          '<li><a href="https://davidawindham.com/work">Work</a></li>' +
+          '<li><a href="https://davidwindham.com/about">About</a></li>' +
+          '<li><a href="https://davidwindham.com/desk">Desk</a></li>' +
+          '<li><a href="https://davidwindham.com/studio">Studio</a></li>' +
+          '<li><a href="https://davidwindham.com/work">Work</a></li>' +
           '<span class="dw-nav-underline" aria-hidden="true"></span>' +
         '</ul>' +
       '</nav>' +