mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-25 09:23:17 +01:00
27 lines
576 B
JavaScript
27 lines
576 B
JavaScript
import Head from 'next/head';
|
|
import SignUp from 'pageComponents/SignUp';
|
|
import MenuBar from 'components/Sidebar/MenuBar';
|
|
import GlobalStyle from '../globalStyles';
|
|
|
|
export default function SignUpPage() {
|
|
return (
|
|
<div>
|
|
<Head>
|
|
<title>bruno</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
|
|
<GlobalStyle />
|
|
|
|
<main>
|
|
<div className="flex flex-row h-full">
|
|
<MenuBar />
|
|
<div className="flex flex-grow h-full">
|
|
<SignUp />
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
);
|
|
};
|