6 Commits

Author SHA1 Message Date
syoul 21441c4550 chore: merge dev → main v0.2.0
ci/woodpecker/push/woodpecker Pipeline was successful
2026-03-23 20:20:41 +01:00
syoul 26e429c8c0 chore: ajoute docs-syoul/ au .gitignore
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-23 20:14:39 +01:00
syoul 03f63aec46 feat: ajoute un descriptif de l'application dans le panneau latéral
ci/woodpecker/push/woodpecker Pipeline was successful
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-23 20:09:08 +01:00
syoul ec06c4e35c style: footer dépôt et licence en jaune Ğ1
ci/woodpecker/push/woodpecker Pipeline was successful
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-23 19:56:24 +01:00
syoul aa1f3d5f2f feat: ajoute dépôt et licence AGPLv3 dans le footer
ci/woodpecker/push/woodpecker Pipeline was successful
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-23 19:53:27 +01:00
syoul 034e16ee37 chore: ajoute docs-plan/ au .gitignore
ci/woodpecker/push/woodpecker Pipeline was successful
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-23 19:45:50 +01:00
2 changed files with 20 additions and 1 deletions
+3
View File
@@ -27,3 +27,6 @@ dist-ssr
*.njsproj
*.sln
*.sw?
/docs-plan/
/docs-syoul/
+17 -1
View File
@@ -63,6 +63,11 @@ export function StatsPanel({ stats, loading, periodDays, source }: StatsPanelPro
</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 */}
<p className="text-[#4b5563] text-xs border-t border-[#1e1f2a] pt-3">
Période : <span className="text-[#6b7280]">{periodLabel}</span>
@@ -142,10 +147,21 @@ export function StatsPanel({ stats, loading, periodDays, source }: StatsPanelPro
)}
{/* 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">
{source === 'live' ? 'Ğ1v2 · Subsquid + Cesium+' : 'Données simulées · mock'}
</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>
</aside>
);