first commit
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
import Grid from "@mui/material/Grid";
|
||||
import Link from 'next/link';
|
||||
import styles from '@/styles/PageTitle.module.css'
|
||||
import AudienceOverview from '@/components/Dashboard/Analytics/AudienceOverview';
|
||||
import VisitsByDay from "@/components/Analytics/Customers/VisitsByDay";
|
||||
import NetIncome from "@/components/Analytics/Customers/NetIncome";
|
||||
import NewSessions from "@/components/Analytics/Customers/NewSessions";
|
||||
import CustomersDetails from "@/components/Analytics/Customers/CustomersDetails";
|
||||
|
||||
export default function Customers() {
|
||||
return (
|
||||
<>
|
||||
{/* Page title */}
|
||||
<div className={styles.pageTitle}>
|
||||
<h1>Customers</h1>
|
||||
<ul>
|
||||
<li>
|
||||
<Link href="/">Dashboard</Link>
|
||||
</li>
|
||||
<li>Customers</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
{/* AudienceOverview */}
|
||||
<AudienceOverview />
|
||||
|
||||
<Grid
|
||||
container
|
||||
rowSpacing={1}
|
||||
justifyContent="center"
|
||||
columnSpacing={{ xs: 1, sm: 1, md: 1, lg: 2, xl: 2 }}
|
||||
>
|
||||
<Grid item xs={12} md={6} lg={6} xl={4}>
|
||||
<VisitsByDay />
|
||||
</Grid>
|
||||
|
||||
<Grid item xs={12} md={6} lg={6} xl={4}>
|
||||
<NetIncome />
|
||||
</Grid>
|
||||
|
||||
<Grid item xs={12} md={6} lg={6} xl={4}>
|
||||
<NewSessions />
|
||||
</Grid>
|
||||
</Grid>
|
||||
|
||||
{/* CustomersDetails */}
|
||||
<CustomersDetails />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user