From d32bbe660678a369c538bdc0cf29fb973c8cbcbb Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 3 Aug 2025 14:23:58 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=90=20Hide=20pricing=20page=20from=20a?= =?UTF-8?q?uthenticated=20users=20navigation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Remove pricing link for logged-in users • Cleaner navigation experience for authenticated users • Pricing only shown to visitors who need it 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- templates/base.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/base.html b/templates/base.html index 861b988..4f66aef 100644 --- a/templates/base.html +++ b/templates/base.html @@ -32,7 +32,9 @@ Home AI Digital Branding AI Marketplace + {% if not user.is_authenticated %} Pricing + {% endif %}