feat(stats): add subtitle explaining visitor map count difference

This commit is contained in:
Wayne Sutton
2025-12-21 16:19:49 -08:00
parent 4a912fd345
commit a2bef06315
7 changed files with 13 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
---
Type: page
Date: 2025-12-21
Date: 2025-12-22
---
An open-source publishing framework for AI agents and developers. Write markdown, sync from the terminal. Your content is instantly available to browsers, LLMs, and AI agents. Built on Convex and Netlify.

View File

@@ -2,7 +2,7 @@
---
Type: page
Date: 2025-12-21
Date: 2025-12-22
---
All notable changes to this project.

View File

@@ -2,7 +2,7 @@
---
Type: page
Date: 2025-12-21
Date: 2025-12-22
---
You found the contact page. Nice

View File

@@ -2,7 +2,7 @@
---
Type: page
Date: 2025-12-21
Date: 2025-12-22
---
Reference documentation for setting up, customizing, and deploying this markdown framework.

View File

@@ -2,7 +2,7 @@
---
Type: page
Date: 2025-12-21
Date: 2025-12-22
---
This markdown framework is open source and built to be extended. Here is what ships out of the box.

View File

@@ -84,6 +84,7 @@ export default function VisitorMap({ locations, title }: VisitorMapProps) {
return (
<div className="visitor-map-container">
{title && <h2 className="visitor-map-title">{title}</h2>}
<p className="visitor-map-subtitle">Location-enabled sessions</p>
<div className="visitor-map-wrapper">
<svg
viewBox="0 0 800 400"

View File

@@ -2692,10 +2692,16 @@ body {
.visitor-map-title {
font-size: var(--font-size-stats-section-title);
color: var(--text-primary);
margin-bottom: 16px;
margin-bottom: 4px;
font-weight: 600;
}
.visitor-map-subtitle {
font-size: var(--font-size-sm);
color: var(--text-muted);
margin: 0 0 16px 0;
}
.visitor-map-wrapper {
position: relative;
border-radius: 12px;