19 lines
427 B
TypeScript
19 lines
427 B
TypeScript
import type { NextPage } from 'next'
|
|
import Head from 'next/head'
|
|
import {HomeComponent} from "../components/Home";
|
|
|
|
const Home: NextPage = () => {
|
|
return (
|
|
<div>
|
|
<Head>
|
|
<title>Factorio Microservices</title>
|
|
<meta name="description" content="Create Factorio microservices" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
<HomeComponent/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Home
|