From 4f79a3cf2f8f6b9f5b12c57e22b02b1d374fe665 Mon Sep 17 00:00:00 2001 From: "yves.gugger" Date: Wed, 10 Dec 2025 16:10:37 +0100 Subject: [PATCH] fix: Remove serif font (font-display) from Command Center MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CHANGED font-display → font-semibold: Command Center Pages: - alerts/page.tsx: Matches count, notifications, modal title - marketplace/page.tsx: Listing price - portfolio/page.tsx: Valuation price - listings/page.tsx: Price display, modal titles (2) - seo/page.tsx: Feature title, SEO score, backlinks count Components (used in Command Center): - CommandCenterLayout.tsx: Page title - AdminLayout.tsx: Page title - PremiumTable.tsx: StatCard value KEPT serif font (as requested): - Sidebar.tsx: POUNCE logo only - Header.tsx: POUNCE logo (public pages) - Footer.tsx: POUNCE logo Now the Command Center uses only sans-serif fonts, with the exception of the POUNCE logo in the navigation. --- frontend/src/app/command/alerts/page.tsx | 6 +++--- frontend/src/app/command/listings/page.tsx | 6 +++--- frontend/src/app/command/marketplace/page.tsx | 2 +- frontend/src/app/command/portfolio/page.tsx | 2 +- frontend/src/app/command/seo/page.tsx | 6 +++--- frontend/src/components/AdminLayout.tsx | 2 +- frontend/src/components/CommandCenterLayout.tsx | 2 +- frontend/src/components/PremiumTable.tsx | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/frontend/src/app/command/alerts/page.tsx b/frontend/src/app/command/alerts/page.tsx index 7d699d2..f57a82e 100644 --- a/frontend/src/app/command/alerts/page.tsx +++ b/frontend/src/app/command/alerts/page.tsx @@ -286,11 +286,11 @@ export default function SniperAlertsPage() { {/* Stats */}
-

{alert.matches_count}

+

{alert.matches_count}

Matches

-

{alert.notifications_sent}

+

{alert.notifications_sent}

Notified

@@ -419,7 +419,7 @@ export default function SniperAlertsPage() { {showCreateModal && (
-

Create Sniper Alert

+

Create Sniper Alert

Get notified when domains matching your criteria appear in auctions.

diff --git a/frontend/src/app/command/listings/page.tsx b/frontend/src/app/command/listings/page.tsx index 8dafdc0..c508771 100755 --- a/frontend/src/app/command/listings/page.tsx +++ b/frontend/src/app/command/listings/page.tsx @@ -342,7 +342,7 @@ export default function MyListingsPage() { {/* Price */}
-

+

{formatPrice(listing.asking_price, listing.currency)}

{listing.pounce_score && ( @@ -412,7 +412,7 @@ export default function MyListingsPage() { {showCreateModal && (
-

List Domain for Sale

+

List Domain for Sale

@@ -514,7 +514,7 @@ export default function MyListingsPage() { {showVerifyModal && verificationInfo && selectedListing && (
-

Verify Domain Ownership

+

Verify Domain Ownership

Add a DNS TXT record to prove you own {selectedListing.domain}

diff --git a/frontend/src/app/command/marketplace/page.tsx b/frontend/src/app/command/marketplace/page.tsx index 295a853..440671e 100644 --- a/frontend/src/app/command/marketplace/page.tsx +++ b/frontend/src/app/command/marketplace/page.tsx @@ -292,7 +292,7 @@ export default function CommandMarketplacePage() { )}
-

+

{formatPrice(listing.asking_price, listing.currency)}

{listing.price_type === 'negotiable' && ( diff --git a/frontend/src/app/command/portfolio/page.tsx b/frontend/src/app/command/portfolio/page.tsx index 2d87b5a..b0ce4e6 100644 --- a/frontend/src/app/command/portfolio/page.tsx +++ b/frontend/src/app/command/portfolio/page.tsx @@ -703,7 +703,7 @@ export default function PortfolioPage() { ) : valuation ? (
-

${valuation.estimated_value.toLocaleString()}

+

${valuation.estimated_value.toLocaleString()}

Pounce Score Estimate

diff --git a/frontend/src/app/command/seo/page.tsx b/frontend/src/app/command/seo/page.tsx index dbd26da..295fd62 100644 --- a/frontend/src/app/command/seo/page.tsx +++ b/frontend/src/app/command/seo/page.tsx @@ -151,7 +151,7 @@ export default function SEOPage() {
-

Tycoon Feature

+

Tycoon Feature

SEO Juice Detector is a premium feature for serious domain investors. Analyze backlinks, domain authority, and find hidden gems that SEO agencies pay @@ -280,7 +280,7 @@ export default function SEOPage() { "w-24 h-24 rounded-2xl border flex flex-col items-center justify-center", getScoreBg(seoData.seo_score) )}> - + {seoData.seo_score} SEO Score @@ -291,7 +291,7 @@ export default function SEOPage() { {seoData.estimated_value && (

Estimated SEO Value

-

+

${seoData.estimated_value.toLocaleString()}

diff --git a/frontend/src/components/AdminLayout.tsx b/frontend/src/components/AdminLayout.tsx index 8a2c8ee..151f6b3 100644 --- a/frontend/src/components/AdminLayout.tsx +++ b/frontend/src/components/AdminLayout.tsx @@ -146,7 +146,7 @@ export function AdminLayout({

-

{title}

+

{title}

{subtitle &&

{subtitle}

}
diff --git a/frontend/src/components/CommandCenterLayout.tsx b/frontend/src/components/CommandCenterLayout.tsx index 69f27f9..ef1d05e 100755 --- a/frontend/src/components/CommandCenterLayout.tsx +++ b/frontend/src/components/CommandCenterLayout.tsx @@ -113,7 +113,7 @@ export function CommandCenterLayout({ {/* Left: Title */}
{title && ( -

{title}

+

{title}

)} {subtitle && (

{subtitle}

diff --git a/frontend/src/components/PremiumTable.tsx b/frontend/src/components/PremiumTable.tsx index 5b3fc02..ee19383 100755 --- a/frontend/src/components/PremiumTable.tsx +++ b/frontend/src/components/PremiumTable.tsx @@ -364,7 +364,7 @@ export function StatCard({
)}

{title}

-

+

{typeof value === 'number' ? value.toLocaleString() : value}

{subtitle &&

{subtitle}

}