add weather module

This commit is contained in:
2025-08-29 13:15:38 +02:00
parent b27be08b87
commit 69f46059e0
12 changed files with 527 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ import Flatastic from "@/components/Flatastic/Flatastic";
import Footer from "@/components/Footer/Footer";
import Terminal from "@/components/Terminal/Terminal";
import Timetable from "@/components/Timetable/Timetable";
import Weather from "../Weather/Weather";
import style from "./style.module.css";
export default function Dashboard() {
@@ -43,14 +43,18 @@ export default function Dashboard() {
<CardHeader icon="🚊" content="Timetable" />
<Timetable />
</Card>
<div className={style.small}>
<div className={style.clockAndWeather}>
<div className={style.small}>
<Card>
<CardHeader icon="🕐" content="Clock" />
<Datetime />
</Card>
</div>
<Card>
<CardHeader icon="🕐" content="Clock" />
<Datetime />
<CardHeader icon="🌤️" content="Weather" />
<Weather />
</Card>
</div>
<Card>
<CardHeader icon="🔔" content="Terminal" active={true} />
<Terminal />
@@ -61,7 +65,6 @@ export default function Dashboard() {
<Flatastic />
</Card>
</div>
<div className={style.footer}>
<Footer />
</div>