45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
import Grid from "@mui/material/Grid";
|
|
import Link from 'next/link';
|
|
import styles from '@/styles/PageTitle.module.css'
|
|
import RevenueReport from "@/components/Dashboard/Analytics/RevenueReport";
|
|
import AvarageReport from "@/components/Analytics/Reports/AvarageReport";
|
|
import SessionsByCountries from "@/components/Dashboard/Analytics/SessionsByCountries";
|
|
import BrowserUsedAndTrafficReports from "@/components/Analytics/Reports/BrowserUsedAndTrafficReports";
|
|
|
|
export default function Reports() {
|
|
return (
|
|
<>
|
|
{/* Page title */}
|
|
<div className={styles.pageTitle}>
|
|
<h1>Reports</h1>
|
|
<ul>
|
|
<li>
|
|
<Link href="/">Dashboard</Link>
|
|
</li>
|
|
<li>Reports</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<Grid
|
|
container
|
|
rowSpacing={1}
|
|
columnSpacing={{ xs: 1, sm: 1, md: 1, lg: 1, xl: 2 }}
|
|
>
|
|
<Grid item xs={12} md={12} lg={12} xl={5}>
|
|
<RevenueReport />
|
|
</Grid>
|
|
|
|
<Grid item xs={12} md={12} lg={12} xl={3}>
|
|
<AvarageReport />
|
|
</Grid>
|
|
|
|
<Grid item xs={12} md={12} lg={12} xl={4}>
|
|
<SessionsByCountries />
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<BrowserUsedAndTrafficReports />
|
|
</>
|
|
);
|
|
}
|