Skip to content

Commit

Permalink
dashboard update
Browse files Browse the repository at this point in the history
  • Loading branch information
Chanuka-ChandraYapa committed Sep 12, 2023
1 parent b899032 commit 36d7708
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 33 deletions.
32 changes: 16 additions & 16 deletions src/layouts/dashboard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function Dashboard() {
<DashboardNavbar />
<MDBox py={3}>
<Grid container spacing={3}>
<Grid item xs={12} md={6} lg={3}>
<Grid item xs={12} md={6} lg={4}>
<MDBox mb={1.5}>
<AnchorLink href="#table">
<ComplexStatisticsCard
Expand All @@ -63,36 +63,36 @@ function Dashboard() {
</AnchorLink>
</MDBox>
</Grid>
<Grid item xs={12} md={6} lg={3}>
<Grid item xs={12} md={6} lg={4}>
<MDBox mb={1.5}>
<ComplexStatisticsCard
icon="face"
title="Total Users"
count="2,300"
color="success"
icon="store"
title="Reports"
count="34k"
percentage={{
color: "success",
amount: "+3%",
label: "than last month",
amount: "+1%",
label: "than yesterday",
}}
/>
</MDBox>
</Grid>
<Grid item xs={12} md={6} lg={3}>
<Grid item xs={12} md={6} lg={4}>
<MDBox mb={1.5}>
<ComplexStatisticsCard
color="success"
icon="store"
title="Revenue"
count="34k"
icon="face"
title="Total Users"
count="2,300"
percentage={{
color: "success",
amount: "+1%",
label: "than yesterday",
amount: "+3%",
label: "than last month",
}}
/>
</MDBox>
</Grid>
<Grid item xs={12} md={6} lg={3}>
{/* <Grid item xs={12} md={6} lg={3}>
<MDBox mb={1.5}>
<ComplexStatisticsCard
color="primary"
Expand All @@ -106,7 +106,7 @@ function Dashboard() {
}}
/>
</MDBox>
</Grid>
</Grid> */}
</Grid>
{/* <MDBox mt={4.5}>
<Grid container spacing={3}>
Expand Down
31 changes: 14 additions & 17 deletions src/layouts/landing/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,25 @@ import Access from "./Page/Access";
import Supercharge from "./Page/Supercharge";
import Agents from "./Page/Agents";
import Action from "./Page/Action";
import Footer from "./Page/Footer";
// import Footer from "./Page/Footer";
import "./index.css";
import DashboardLayout from "examples/LayoutContainers/DashboardLayout";
import DashboardNavbar from "examples/Navbars/DashboardNavbar";
// import DashboardLayout from "examples/LayoutContainers/DashboardLayout";
// import DashboardNavbar from "examples/Navbars/DashboardNavbar";

function App() {
return (
<DashboardLayout>
<DashboardNavbar />
<div className="landing-page">
<main className="main">
<Hero />
<Snippets />
<Access />
<Supercharge />
<Agents />
<Action />
</main>
<div className="landing-page">
<main className="main">
<Hero />
<Snippets />
<Access />
<Supercharge />
<Agents />
<Action />
</main>

<Footer className="footer" />
</div>
</DashboardLayout>
{/* <Footer className="footer" /> */}
</div>
);
}

Expand Down

0 comments on commit 36d7708

Please sign in to comment.