18 lines
503 B
TypeScript
18 lines
503 B
TypeScript
|
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>
|
||
|
)
|
||
|
}
|