Expose Firestore analytics on /analytics

This commit is contained in:
Austin Chen 2022-01-17 13:34:28 -05:00
parent 8331e7afc5
commit 673c432bb9

17
web/pages/analytics.tsx Normal file
View File

@ -0,0 +1,17 @@
import { Page } from '../components/page'
export default function Analytics() {
// Edit dashboard at https://datastudio.google.com/u/0/reporting/faeaf3a4-c8da-4275-b157-98dad017d305/page/Gg3/edit
return (
<Page>
<iframe
className="w-full"
height={2200}
src="https://datastudio.google.com/embed/reporting/faeaf3a4-c8da-4275-b157-98dad017d305/page/Gg3"
frameBorder="0"
style={{ border: 0 }}
allowFullScreen
></iframe>
</Page>
)
}