chore: cleanup old files

This commit is contained in:
Anoop M D 2023-01-22 02:43:14 +05:30
parent 65d8a707d8
commit f9a3fb2f1b
3 changed files with 0 additions and 78 deletions

View File

@ -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>
);
}

View File

@ -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>
);
}

View File

@ -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>
);
}