// Simple sun icon for the weather card function SunIcon() { return ( ); } // Weather card component where the location and themeColor are based on what the agent // sets via tool calls. export function WeatherCard({ location, themeColor, }: { location?: string; themeColor: string; }) { return (

{location}

Current Weather

70°
Clear skies

Humidity

45%

Wind

5 mph

Feels Like

72°

); }