import React from 'react' import { InfoBlock } from '../info-block' import { SiLighthouse } from 'react-icons/si' export const LighthouseBox = ({ pageInsights }: { pageInsights?: boolean }) => { return ( }> {pageInsights ? 'Enabled' : 'Not Enabled'} ) }