News container (better than ever)

This commit is contained in:
2022-01-03 13:33:42 +01:00
parent 7a916bc899
commit 0ac2eb2125
6 changed files with 213 additions and 37 deletions

View File

@ -1,6 +1,7 @@
import * as React from "react"
import secrets from "../../secrets.json"
import Calendar from "../components/Calendar";
import News from "../components/News";
import WeatherAndTimeContainer from "../components/WeatherAndTime"
import WeatherRadar from "../components/WeatherRadar";
@ -34,6 +35,7 @@ const IndexPage = () => {
<WeatherAndTimeContainer secrets={secrets.weather} />
<Calendar secrets={secrets.calendar} />
<WeatherRadar />
<News />
</main>)
}