From f675adc68601681ef7151728372624f3821dd9a5 Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Thu, 26 Feb 2026 21:09:24 -0800 Subject: [PATCH] add posthog for my edification --- src/components/head/posthog.astro | 57 +++++++++++++++++++++++++++++++ src/layouts/base.astro | 2 ++ 2 files changed, 59 insertions(+) create mode 100644 src/components/head/posthog.astro diff --git a/src/components/head/posthog.astro b/src/components/head/posthog.astro new file mode 100644 index 0000000..bd0ea06 --- /dev/null +++ b/src/components/head/posthog.astro @@ -0,0 +1,57 @@ + diff --git a/src/layouts/base.astro b/src/layouts/base.astro index 7ba611a..2105735 100644 --- a/src/layouts/base.astro +++ b/src/layouts/base.astro @@ -5,6 +5,7 @@ import '@fontsource-variable/source-code-pro'; import '@fontsource-variable/source-serif-4'; import '@styles/style.css'; import HeadBase from '@components/head/base.astro'; +import PostHog from '@components/head/posthog.astro'; import HeadPage from '@components/head/page.astro'; import Heading from '@components/heading.astro'; import Footer from '@components/footer.astro'; @@ -21,6 +22,7 @@ const { title, description } = Astro.props; + -- 2.53.0