[object Object]

← back to Fabricfriday

Add clean /privacy route (AdSense URL consistency)

9e013998871f7b7a7cf531ef64cf55b5e22abb98 · 2026-09-10 11:51:21 -0700 · Steve Abrams

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

Files touched

Diff

commit 9e013998871f7b7a7cf531ef64cf55b5e22abb98
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Thu Sep 10 11:51:21 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 95fa07c..2e7c923 100644
--- a/server.js
+++ b/server.js
@@ -21,6 +21,7 @@ app.use((req, res, next) => {
 
 require('../_shared/_universal-promo-banner')(app, { slug: 'fabricfriday' });
 app.use(express.static(path.join(__dirname, 'public')));
+app.get('/privacy', (req, res) => res.sendFile(path.join(__dirname, 'public', 'privacy.html')));
 
 const products = JSON.parse(fs.readFileSync(path.join(__dirname, 'data/products.json'), 'utf8'));
 

← 9fb015d Add privacy footer link (AdSense discoverability)  ·  back to Fabricfriday  ·  (newest)