Stylings / Restructuring
This commit is contained in:
@@ -1,17 +1,22 @@
|
||||
import type { NextPage } from 'next'
|
||||
import Head from 'next/head'
|
||||
import {Home} from "../components/home/Home";
|
||||
import {useEffect} from "react";
|
||||
|
||||
const Page: NextPage = () => {
|
||||
useEffect(() =>
|
||||
{
|
||||
document.body.classList.add("scroll");
|
||||
});
|
||||
return (
|
||||
<div>
|
||||
<>
|
||||
<Head>
|
||||
<title>Factorio Microservices</title>
|
||||
<meta name="description" content="Create Factorio microservices" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
</Head>
|
||||
<Home/>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user