chore: merge dev → main v0.2.0
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
syoul
2026-03-23 20:20:41 +01:00
2 changed files with 20 additions and 1 deletions
+3
View File
@@ -27,3 +27,6 @@ dist-ssr
*.njsproj *.njsproj
*.sln *.sln
*.sw? *.sw?
/docs-plan/
/docs-syoul/
+17 -1
View File
@@ -63,6 +63,11 @@ export function StatsPanel({ stats, loading, periodDays, source }: StatsPanelPro
</div> </div>
</div> </div>
{/* Description */}
<p className="text-[#6b7280] text-xs leading-relaxed border-t border-[#1e1f2a] pt-3">
Visualisation en temps réel des flux de la monnaie libre <span className="text-[#d4a843]">Ğ1</span> sur une carte mondiale.
</p>
{/* Period label */} {/* Period label */}
<p className="text-[#4b5563] text-xs border-t border-[#1e1f2a] pt-3"> <p className="text-[#4b5563] text-xs border-t border-[#1e1f2a] pt-3">
Période : <span className="text-[#6b7280]">{periodLabel}</span> Période : <span className="text-[#6b7280]">{periodLabel}</span>
@@ -142,10 +147,21 @@ export function StatsPanel({ stats, loading, periodDays, source }: StatsPanelPro
)} )}
{/* Footer */} {/* Footer */}
<div className="mt-auto pt-4 border-t border-[#1e1f2a]"> <div className="mt-auto pt-4 border-t border-[#1e1f2a] space-y-1.5">
<p className="text-[#2e2f3a] text-xs text-center"> <p className="text-[#2e2f3a] text-xs text-center">
{source === 'live' ? 'Ğ1v2 · Subsquid + Cesium+' : 'Données simulées · mock'} {source === 'live' ? 'Ğ1v2 · Subsquid + Cesium+' : 'Données simulées · mock'}
</p> </p>
<a
href="https://git.open.us.org/syoul/g1flux"
target="_blank"
rel="noopener noreferrer"
className="block text-[#d4a843] hover:text-[#e8c060] text-xs text-center transition-colors"
>
git.open.us.org/syoul/g1flux
</a>
<p className="text-[#d4a843] text-xs text-center">
Logiciel libre sous licence AGPLv3
</p>
</div> </div>
</aside> </aside>
); );