[object Object]

← back to Wallpaperdictionary

Add clean /privacy route (AdSense URL consistency)

8aa7ac8a85a563662d1272b927a84a35c1499573 · 2026-09-10 11:51:29 -0700 · Steve Abrams

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

Files touched

Diff

commit 8aa7ac8a85a563662d1272b927a84a35c1499573
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Thu Sep 10 11:51:29 2026 -0700

    Add clean /privacy route (AdSense URL consistency)
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
 server.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/server.js b/server.js
index 738d7e4..a003789 100644
--- a/server.js
+++ b/server.js
@@ -12,6 +12,7 @@ app.use((req, res, next) => {
 });
 
 app.use(express.static(path.join(__dirname, 'public')));
+app.get('/privacy', (req, res) => res.sendFile(path.join(__dirname, 'public', 'privacy.html')));
 
 app.get('/health', (req, res) => res.json({ status: 'ok', site: 'wallpaperdictionary.com' }));
 

← fe89d73 Add privacy footer link (AdSense discoverability)  ·  back to Wallpaperdictionary  ·  (newest)