mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-07 16:44:27 +01:00
chore: cleanup old files
This commit is contained in:
parent
65d8a707d8
commit
f9a3fb2f1b
@ -1,26 +0,0 @@
|
||||
import Head from 'next/head';
|
||||
import Collections from 'pageComponents/Collections';
|
||||
import MenuBar from 'components/Sidebar/MenuBar';
|
||||
import GlobalStyle from '../globalStyles';
|
||||
|
||||
export default function CollectionsPage() {
|
||||
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 px-8">
|
||||
<Collections />
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
import Head from 'next/head';
|
||||
import Login from 'pageComponents/Login';
|
||||
import MenuBar from 'components/Sidebar/MenuBar';
|
||||
import GlobalStyle from '../globalStyles';
|
||||
|
||||
export default function LoginPage() {
|
||||
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">
|
||||
<Login />
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
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>
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue
Block a user