Fx page
This commit is contained in:
@@ -2,9 +2,7 @@ import SiteLogo from '../../src/assets/logo-pink.png'
|
||||
export default function DummyLogo() {
|
||||
return (
|
||||
<div>
|
||||
<img src={SiteLogo} className='w-4/5 md:w-80 h-auto' alt='error logo' />
|
||||
{/*<h1 className="text-sm font-bold">MERMS</h1>*/}
|
||||
{/*<p className="text-12">logo here</p>*/}
|
||||
<img src={SiteLogo} className='w-4/5 md:w-80 h-auto' alt='merms logo' />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -37,7 +37,7 @@ export default function HomeCom() {
|
||||
<div className='grid grid-cols-1 gap-8'>
|
||||
<div className='w-full grid grid-cols-1 xl:grid-cols-3 gap-8'>
|
||||
<div className='box min-h-[230] justify-between bg-[#F7D9E3] dark:bg-black-box text-black-body dark:text-white-body'>
|
||||
<p className='text-base sm:text-lg font-bold hover:text-primary'>Loans</p>
|
||||
<p className='text-base sm:text-lg font-bold hover:text-primary'>Subscriptions</p>
|
||||
<div className='flex flex-wrap gap-2 items-end font-bold'>
|
||||
{/* <p className='text-3xl sm:text-[39px]'><span className='text-xl sm:text-2xl'>{dashData?.loans?.currency_text}</span><CustomCounter targetNumber={dashData?.loans?.value} timeInSeconds='1' /></p> */}
|
||||
<p className='text-xl sm:text-[30px]'><span className='text-lg sm:text-xl'>
|
||||
@@ -58,7 +58,7 @@ export default function HomeCom() {
|
||||
</div>
|
||||
</div>
|
||||
<div className='box min-h-[230] justify-between bg-[#CBD4F4] dark:bg-black-box text-black-body dark:text-white-body'>
|
||||
<p className='mb-4 text-base sm:text-lg font-bold hover:text-primary'>Request Summary</p>
|
||||
<p className='mb-4 text-base sm:text-lg font-bold hover:text-primary'>Provision Summary</p>
|
||||
<div className='grid grid-cols-2 gap-4 font-bold'>
|
||||
{
|
||||
Object.values(dashData?.request_summary).map((item, index) => {
|
||||
|
||||
@@ -36,7 +36,7 @@ export default function DashboardLayout() {
|
||||
|
||||
{/* FOOTER SECTION */}
|
||||
<footer className="py-5 text-center lg:text-end w-full text-brown dark:text-white-light">
|
||||
<p className="text-10">Copyright @ {new Date().getFullYear()} - Developed by digiFi. All Rights Reserved</p>
|
||||
<p className="text-10">Copyright @ {new Date().getFullYear()} - Developed by MERMS(AI). All Rights Reserved</p>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -137,13 +137,14 @@ export default function DashboardAside() {
|
||||
|
||||
const asideNavLinks = [
|
||||
{name:'Dashboard', status:1, icon: 'dashboard', to: RouteLinks.homePage},
|
||||
{name:'First Advance', title:'Loan', status:1, icon: 'arrow-right', subLinks: [
|
||||
{name: 'Transactions', status:1, icon: 'dot', to: RouteLinks.transactionsPage},
|
||||
{name: 'Loans', status:1, icon: 'dot', to: RouteLinks.loansPage},
|
||||
{name: 'Repayments', status:1, icon: 'dot', to: RouteLinks.repaymentsPage},
|
||||
{name: 'Loan Charges', status:1, icon: 'dot', to: RouteLinks.loanChargesPage},
|
||||
{name:'Deployments', title:'Loan', status:1, icon: 'arrow-right', subLinks: [
|
||||
{name: 'Active', status:1, icon: 'dot', to: RouteLinks.transactionsPage},
|
||||
{name: 'System', status:1, icon: 'dot', to: RouteLinks.loansPage},
|
||||
{name: 'Customers', status:1, icon: 'dot', to: RouteLinks.repaymentsPage},
|
||||
{name: 'Billings', status:1, icon: 'dot', to: RouteLinks.loanChargesPage},
|
||||
{name: 'Configurations', status:1, icon: 'arrow-right', subLinks: [
|
||||
{name: 'Loan Offers', status:1, icon: 'dot', to: RouteLinks.offers },
|
||||
{name: 'Product Settings', status:1, icon: 'dot', to: RouteLinks.offers },
|
||||
{name: 'Manage 2', status:1, icon: 'dot', to: RouteLinks.offers },
|
||||
]
|
||||
},
|
||||
],
|
||||
|
||||
@@ -6,7 +6,7 @@ export default function Orders() {
|
||||
return (
|
||||
<div className='h-full p-2 sm:p-4 large:p-8 flex flex-col gap-16 overflow-y-auto aside-scroll-design'>
|
||||
<div className='flex flex-col gap-4'>
|
||||
<p className='text-base text-white-body font-bold'>Recent Eligibility</p>
|
||||
<p className='text-base text-white-body font-bold'>Recent Checks</p>
|
||||
<div className='grid grid-cols-2 gap-4 sm:gap-6 large:gap-8'>
|
||||
<div className='p-2 sm:p-3 large:p-4 flex flex-col border border-slate-500 border-dashed'>
|
||||
<p className='text-base font-bold text-white-body'>
|
||||
@@ -35,7 +35,7 @@ export default function Orders() {
|
||||
</div>
|
||||
</div>
|
||||
<div className='flex flex-col gap-4'>
|
||||
<p className='text-base text-white-body font-bold'>Recent Loans</p>
|
||||
<p className='text-base text-white-body font-bold'>Recent Login</p>
|
||||
<div className='flex flex-col gap-4'>
|
||||
<div className='flex gap-3 items-center'>
|
||||
<div className='px-4 py-2 bg-[#0E172E] rounded-md'>
|
||||
|
||||
Reference in New Issue
Block a user