mirror of
https://github.com/waynesutton/markdown-site.git
synced 2026-01-12 04:09:14 +00:00
feat(stats): add subtitle explaining visitor map count difference
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
---
|
||||
Type: page
|
||||
Date: 2025-12-21
|
||||
Date: 2025-12-22
|
||||
---
|
||||
|
||||
All notable changes to this project.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
---
|
||||
Type: page
|
||||
Date: 2025-12-21
|
||||
Date: 2025-12-22
|
||||
---
|
||||
|
||||
You found the contact page. Nice
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user