added basic weather gen

This commit is contained in:
2025-07-02 00:28:47 +03:00
parent f9e57bb6e2
commit 4c9667af77
6 changed files with 263 additions and 32 deletions

View File

@@ -5,6 +5,12 @@
const { data }: PageProps = $props();
const currentWeather = data.current;
$inspect(currentWeather)
</script>
<WeatherGen {currentWeather}></WeatherGen>
<div class="flex min-h-screen flex-col items-center justify-center">
<WeatherGen {...currentWeather}></WeatherGen>
</div>