From 146f1f91c461b222c047b2ea004516dfa064abaf Mon Sep 17 00:00:00 2001 From: "Azat S." Date: Sat, 10 Aug 2024 23:58:12 +0300 Subject: [PATCH] docs: add analytics --- docs/blocks/analytics/index.tsx | 9 +++++++++ docs/root.tsx | 2 ++ 2 files changed, 11 insertions(+) create mode 100644 docs/blocks/analytics/index.tsx diff --git a/docs/blocks/analytics/index.tsx b/docs/blocks/analytics/index.tsx new file mode 100644 index 0000000..c44fc90 --- /dev/null +++ b/docs/blocks/analytics/index.tsx @@ -0,0 +1,9 @@ +import { component$ } from '@builder.io/qwik' + +export let Analytics = component$(() => ( + +)) diff --git a/docs/root.tsx b/docs/root.tsx index 718583e..084de8f 100644 --- a/docs/root.tsx +++ b/docs/root.tsx @@ -6,6 +6,7 @@ import { import { isDev } from '@builder.io/qwik/build' import { component$ } from '@builder.io/qwik' +import { Analytics } from './blocks/analytics' import { Head } from './blocks/head' import './styles/spaces.css' import './styles/colors.css' @@ -18,6 +19,7 @@ export default component$(() => ( {!isDev && } + {!isDev && } ))