2022-03-07 13:22:35 +01:00
|
|
|
import Head from 'next/head';
|
|
|
|
import Main from 'pageComponents/Main';
|
|
|
|
import GlobalStyle from '../globalStyles';
|
2022-03-05 18:37:48 +01:00
|
|
|
|
2022-03-07 13:22:35 +01:00
|
|
|
export default function Home() {
|
2022-03-05 18:37:48 +01:00
|
|
|
return (
|
|
|
|
<div>
|
2022-03-07 13:22:35 +01:00
|
|
|
<Head>
|
|
|
|
<title>grafnode</title>
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
</Head>
|
2022-03-05 18:37:48 +01:00
|
|
|
|
2022-03-07 13:22:35 +01:00
|
|
|
<GlobalStyle />
|
2022-03-05 18:37:48 +01:00
|
|
|
|
2022-03-07 13:22:35 +01:00
|
|
|
<main>
|
|
|
|
<Main />
|
|
|
|
</main>
|
2022-03-05 18:37:48 +01:00
|
|
|
</div>
|
2022-03-07 15:32:39 +01:00
|
|
|
);
|
|
|
|
};
|