From 52041ce92d0d8c2d0398c4e01660e374566847f8 Mon Sep 17 00:00:00 2001 From: Juthatip McDevitt Date: Thu, 21 Mar 2024 21:30:43 -0500 Subject: [PATCH] ... --- weather_app/app/page.tsx | 6 ++++-- weather_app/tailwind.config.ts | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/weather_app/app/page.tsx b/weather_app/app/page.tsx index 07dfbe7..1259660 100644 --- a/weather_app/app/page.tsx +++ b/weather_app/app/page.tsx @@ -1,8 +1,9 @@ import Navbar from "./components/Navbar"; import AirPollution from "./components/airPollution/AirPollution"; -import DailyForecast from "./components/daily_forcast/DailyForecast"; +import DailyForcast from "./components/daily_forcast/DailyForecast"; import Sunset from "./components/sunset/Sunset"; import Temperature from "./components/temp/Temperature"; +import UVI from "./components/uvIndex/UVI"; import Wind from "./components/wind/Wind"; @@ -19,7 +20,8 @@ export default function Home() { - + + diff --git a/weather_app/tailwind.config.ts b/weather_app/tailwind.config.ts index d9001a6..72e721c 100644 --- a/weather_app/tailwind.config.ts +++ b/weather_app/tailwind.config.ts @@ -15,7 +15,7 @@ const config = { padding: "2rem", screens: { "sm-2": "580px", - "md-2": "1200px", + "md-2": "1100px", "2xl": "1400px", }, },