- feat: Style tweaks.

- feat: footer links on dashboard.
- feat: Inactive accounts view.
This commit is contained in:
Ahmed Bouhuolia
2020-07-04 12:40:27 +02:00
parent a279a9c5da
commit 273834b13e
7 changed files with 89 additions and 4 deletions

View File

@@ -1,12 +1,15 @@
import React from 'react';
import DashboardTopbar from 'components/Dashboard/DashboardTopbar';
import DashboardContentRoute from 'components/Dashboard/DashboardContentRoute';
import DashboardFooter from 'components/Dashboard/DashboardFooter';
export default function() {
return (
<div className="dashboard-content" id="dashboard">
<DashboardTopbar />
<DashboardContentRoute />
<DashboardFooter />
</div>
);
}

View File

@@ -0,0 +1,24 @@
import React from 'react';
import footerLinks from 'config/footerLinks';
import { For } from 'components';
function FooterLinkItem({ title, link }) {
return (
<div class="">
<a href={link} target="_blank">
{title}
</a>
</div>
);
}
export default function DashboardFooter({}) {
return (
<div class="dashboard__footer">
<div class="footer-links">
<For render={FooterLinkItem} of={footerLinks} />
</div>
</div>
);
}