mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-22 16:03:39 +01:00
21 lines
370 B
JavaScript
21 lines
370 B
JavaScript
import Head from 'next/head';
|
|
import IndexPage from 'pageComponents/Index';
|
|
import GlobalStyle from '../globalStyles';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
<Head>
|
|
<title>bruno</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
|
|
<GlobalStyle />
|
|
|
|
<main>
|
|
<IndexPage />
|
|
</main>
|
|
</div>
|
|
);
|
|
};
|