import type React from 'react';

import InsightsHeader from '../../Components/Layout/Header/InsightsHeader';
import styles from './Insights.module.scss';
import DashboardContent from './InsightsContent';

const Insights: React.FC = (): JSX.Element => (
	<div className={styles.insights}>
		<div className={styles.mainContent}>
			<InsightsHeader numberOfButtons={3} title="Insights" />
			<DashboardContent />
		</div>
	</div>
);
export default Insights;
