40 lines
917 B
TypeScript
40 lines
917 B
TypeScript
import { Content } from '../../../../_digifi/layout/components/content'
|
|
import {
|
|
FeedsWidget2,
|
|
FeedsWidget3,
|
|
FeedsWidget4,
|
|
FeedsWidget5,
|
|
FeedsWidget6,
|
|
ChartsWidget1,
|
|
ListsWidget5,
|
|
ListsWidget2,
|
|
} from '../../../../_digifi/partials/widgets'
|
|
|
|
export function Overview() {
|
|
return (
|
|
<Content>
|
|
<div className='row g-5 g-xxl-8'>
|
|
<div className='col-xl-6'>
|
|
<FeedsWidget2 className='mb-5 mb-xxl-8' />
|
|
|
|
<FeedsWidget3 className='mb-5 mb-xxl-8' />
|
|
|
|
<FeedsWidget4 className='mb-5 mb-xxl-8' />
|
|
|
|
<FeedsWidget5 className='mb-5 mb-xxl-8' />
|
|
|
|
<FeedsWidget6 className='mb-5 mb-xxl-8' />
|
|
</div>
|
|
|
|
<div className='col-xl-6'>
|
|
<ChartsWidget1 className='mb-5 mb-xxl-8' />
|
|
|
|
<ListsWidget5 className='mb-5 mb-xxl-8' />
|
|
|
|
<ListsWidget2 className='mb-5 mb-xxl-8' />
|
|
</div>
|
|
</div>
|
|
</Content>
|
|
)
|
|
}
|