This is a simple weather app using the OpenWeatherMap API. It displays the current weather for the searched location, as well as a 5 day forecast.
This project features Radix UI and Colors, NextJS server components, and TailwindCSS. Most of the app is server-rendered.
- Create a
.env
file at the root and insert your OpenWeatherMap API key:
OPENWEATHER_KEY="{my_key_here}"
- Install dependencies using
pnpm i
- Start the development server using
pnpm dev