first commit
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
import React from 'react';
|
||||
import Grid from "@mui/material/Grid";
|
||||
import Link from 'next/link';
|
||||
import styles from '@/styles/PageTitle.module.css'
|
||||
import LeftSidebar from '@/components/Apps/FileManager/LeftSidebar';
|
||||
import AllProjects from '@/components/Apps/FileManager/AllProjects';
|
||||
|
||||
export default function Projects() {
|
||||
return (
|
||||
<>
|
||||
{/* Page title */}
|
||||
<div className={styles.pageTitle}>
|
||||
<h1>Projects</h1>
|
||||
<ul>
|
||||
<li>
|
||||
<Link href="/">Dashboard</Link>
|
||||
</li>
|
||||
<li>Projects</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<Grid
|
||||
container
|
||||
rowSpacing={1}
|
||||
columnSpacing={{ xs: 1, sm: 1, md: 1, lg: 1, xl: 2 }}
|
||||
>
|
||||
<Grid item xs={12} sm={12} md={4} lg={4} xl={3}>
|
||||
{/* LeftSidebar */}
|
||||
<LeftSidebar />
|
||||
</Grid>
|
||||
|
||||
<Grid item xs={12} sm={12} md={8} lg={8} xl={9}>
|
||||
{/* AllProjects */}
|
||||
<AllProjects />
|
||||
</Grid>
|
||||
</Grid>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user