Files
workshop-manager/src/components/weather/WeatherInfoPanel.tsx
Froidefond Julien 313ad53e2e
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m3s
refactor(weather): move top disclosures below board
2026-03-04 08:39:19 +01:00

41 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'use client';
import { Disclosure } from '@/components/ui';
interface WeatherInfoPanelProps {
className?: string;
}
export function WeatherInfoPanel({ className = 'mb-6' }: WeatherInfoPanelProps) {
return (
<Disclosure icon="" title="Les 4 axes de la météo personnelle" className={className}>
<div className="grid gap-2.5 sm:grid-cols-2 lg:grid-cols-4">
<div>
<p className="mb-0.5 text-xs font-medium text-foreground"> Performance</p>
<p className="text-xs leading-relaxed text-muted">
Votre performance personnelle et l&apos;atteinte de vos objectifs
</p>
</div>
<div>
<p className="mb-0.5 text-xs font-medium text-foreground">😊 Moral</p>
<p className="text-xs leading-relaxed text-muted">
Votre moral actuel et votre ressenti
</p>
</div>
<div>
<p className="mb-0.5 text-xs font-medium text-foreground">🌊 Flux</p>
<p className="text-xs leading-relaxed text-muted">
Votre flux de travail personnel et les blocages éventuels
</p>
</div>
<div>
<p className="mb-0.5 text-xs font-medium text-foreground">💎 Création de valeur</p>
<p className="text-xs leading-relaxed text-muted">
Votre création de valeur et votre apport
</p>
</div>
</div>
</Disclosure>
);
}