36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { Cloud, Sun } from "lucide-react";
|
|
import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card";
|
|
|
|
export default function WeatherWidget() {
|
|
return (
|
|
<Card className="bg-gradient-to-br from-primary/10 to-secondary">
|
|
<CardHeader>
|
|
<CardTitle className="flex items-center gap-2">
|
|
<Sun className="h-6 w-6 text-primary" />
|
|
Météo
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<p className="text-3xl font-bold text-primary">28°C</p>
|
|
<p className="text-gray-600 mt-1">Ensoleillé</p>
|
|
</div>
|
|
<div className="text-6xl">
|
|
<Sun className="h-16 w-16 text-yellow-400" />
|
|
</div>
|
|
</div>
|
|
<div className="mt-4 flex gap-4 text-sm text-gray-600">
|
|
<div>
|
|
<span className="font-semibold">Vent:</span> 15 km/h
|
|
</div>
|
|
<div>
|
|
<span className="font-semibold">Humidité:</span> 75%
|
|
</div>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|
|
|