From 32d8b9028431855188b1e75f4feea46dc8719d7a Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Mon, 16 Feb 2026 21:52:48 +0100 Subject: [PATCH 1/3] feat: add rewrites for documentation URLs to improve navigation and accessibility --- next.config.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/next.config.ts b/next.config.ts index 282c61c..2bf94f0 100644 --- a/next.config.ts +++ b/next.config.ts @@ -21,6 +21,18 @@ const nextConfig: NextConfig = { }, ] }, + async rewrites() { + return [ + { + source: '/docs', + destination: 'https://ciphera-e9ed055e.mintlify.dev/docs', + }, + { + source: '/docs/:path*', + destination: 'https://ciphera-e9ed055e.mintlify.dev/docs/:path*', + }, + ] + }, } export default withPWA(nextConfig) -- 2.49.1 From ce20205488e8eb26404af781e8d8354f4026d51d Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Tue, 17 Feb 2026 21:16:52 +0100 Subject: [PATCH 2/3] chore: update CHANGELOG.md and DESIGN_SYSTEM.md to reflect footer layout alignment and new color variable usage for SVG/Recharts --- CHANGELOG.md | 1 + docs/DESIGN_SYSTEM.md | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8948c1..5a506ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), - **Hardcoded brand colors.** Uptime page chart uses CSS variable var(--color-brand-orange) instead of #FD5E0F. - **Selection styling.** Removed redundant selection:bg-brand-orange/20 from page wrappers; relies on ciphera-ui base styles. - **Inline spinners.** Dashboard widgets (TopReferrers, Locations, TechSpecs, Campaigns, ContentStats), notifications page, and OrganizationSettings now use Spinner from ciphera-ui. +- **Footer layout.** Authenticated footer container aligned to max-w-6xl (matches site dashboard and page-container-app). ### Removed diff --git a/docs/DESIGN_SYSTEM.md b/docs/DESIGN_SYSTEM.md index 317b442..ed644cd 100644 --- a/docs/DESIGN_SYSTEM.md +++ b/docs/DESIGN_SYSTEM.md @@ -21,10 +21,15 @@ This document defines the visual language and design patterns for Pulse Analytic --brand-orange: #FD5E0F; --brand-orange-hover: #E54E00; /* Darker for hover states */ +/* Injected by @ciphera-net/ui preset — use in SVG, Recharts, rgba() */ +--color-brand-orange: #FD5E0F; +--color-brand-orange-rgb: 253, 94, 15; /* For rgba(var(--color-brand-orange-rgb), 0.5) */ + /* Usage */ - Primary CTAs, links, focus rings - Accent elements, badges - Never use for large backgrounds (too vibrant) +- var(--color-brand-orange) for SVG/Recharts where Tailwind classes don't apply ``` ### Neutral Scale -- 2.49.1 From f9eb6bf5c0254440901ac43e0435803d5eaa0af1 Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Tue, 17 Feb 2026 21:22:56 +0100 Subject: [PATCH 3/3] chore: clarify usage of color-brand-orange-rgb in DESIGN_SYSTEM.md for better documentation and utility reference --- docs/DESIGN_SYSTEM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/DESIGN_SYSTEM.md b/docs/DESIGN_SYSTEM.md index ed644cd..030103d 100644 --- a/docs/DESIGN_SYSTEM.md +++ b/docs/DESIGN_SYSTEM.md @@ -23,7 +23,7 @@ This document defines the visual language and design patterns for Pulse Analytic /* Injected by @ciphera-net/ui preset — use in SVG, Recharts, rgba() */ --color-brand-orange: #FD5E0F; ---color-brand-orange-rgb: 253, 94, 15; /* For rgba(var(--color-brand-orange-rgb), 0.5) */ +--color-brand-orange-rgb: 253, 94, 15; /* Used by .glow-orange utility; also for custom rgba(var(--color-brand-orange-rgb), 0.5) */ /* Usage */ - Primary CTAs, links, focus rings -- 2.49.1