refactor(weather): move top disclosures below board
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m3s
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m3s
This commit is contained in:
@@ -2,9 +2,13 @@
|
||||
|
||||
import { Disclosure } from '@/components/ui';
|
||||
|
||||
export function WeatherInfoPanel() {
|
||||
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="mb-6">
|
||||
<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>
|
||||
|
||||
Reference in New Issue
Block a user