'use client' import LocationSearch from '@/components/LocationSearch'; import WeatherNow from '../components/WeatherNow' import { useState } from 'react'; import { LocationType } from '@/types/types'; const [location, setLocation] = useState(undefined); const { lat, lng } = location?.results[0].geometry.location; export default function Home() { return (

The weather in {location?.results[0].address_components[0].long_name} for the next 3 days

); }