local-weather/app/page.tsx

19 lines
449 B
TypeScript
Raw Normal View History

2024-05-04 21:04:30 +00:00
import LocationSearch from '@/components/LocationSearch';
import WeatherNow from '../components/WeatherNow'
2024-05-03 14:48:24 +00:00
2024-05-04 13:40:23 +00:00
const location = {
latitude: '55.645519',
longtitude: '12.549600'
2024-05-04 07:39:10 +00:00
}
export default function Home() {
return (
<main>
2024-05-04 21:04:30 +00:00
<div className='block mx-auto max-w-4xl'>
<LocationSearch />
<h1>The weather in Sluseholmen for the next 3 days</h1>
<WeatherNow location={location}/>
</div>
2024-05-03 14:48:24 +00:00
</main>
);
2024-05-04 13:40:23 +00:00
}