Added the producing graph

This commit is contained in:
Sebastian Seedorf
2022-08-13 02:13:47 +02:00
parent 185f39cb8a
commit 7682aeaea1
14 changed files with 312 additions and 47 deletions

View File

@@ -1,8 +1,8 @@
import type { NextPage } from 'next'
import Head from 'next/head'
import {HomeComponent} from "../components/home/Home";
import {Home} from "../components/home/Home";
const Home: NextPage = () => {
const Page: NextPage = () => {
return (
<div>
<Head>
@@ -10,9 +10,9 @@ const Home: NextPage = () => {
<meta name="description" content="Create Factorio microservices" />
<link rel="icon" href="/favicon.ico" />
</Head>
<HomeComponent/>
<Home/>
</div>
)
}
export default Home
export default Page