Check Cloudflare headers for country info. Closes #2129

This commit is contained in:
Mike Cao 2023-07-17 00:27:42 -07:00
parent b0b96b34a7
commit ccafb03c47
6 changed files with 15 additions and 89 deletions

13
pages/reports/insights.js Normal file
View file

@ -0,0 +1,13 @@
import AppLayout from 'components/layout/AppLayout';
import InsightsReport from 'components/pages/reports/insights/InsightsReport';
import { useMessages } from 'hooks';
export default function () {
const { formatMessage, labels } = useMessages();
return (
<AppLayout title={`${formatMessage(labels.insights)} - ${formatMessage(labels.reports)}`}>
<InsightsReport />
</AppLayout>
);
}